Fix warning - wrong type used

This commit is contained in:
Twinaphex 2017-09-21 19:24:42 +02:00
parent df60512a0d
commit cff35f3611

View File

@ -385,7 +385,7 @@ static int chd_get_serial(const char *name, char* serial)
static int stream_get_crc(intfstream_t *fd, uint32_t *crc)
{
size_t read = 0;
ssize_t read = 0;
uint32_t acc = 0;
uint8_t buffer[4096];