dosfs: Unsigned compared against 0

Change the type for storing the return from iconv to be signed.
This commit is contained in:
Gedare Bloom
2013-09-05 13:15:33 -04:00
parent e4c192655e
commit a8007dc2ca
+1 -1
View File
@@ -57,7 +57,7 @@ static int msdos_utf8_convert_with_iconv(
size_t outbytes_left = *dst_size;
char *inbuf = (void *) (uintptr_t) src;
char *outbuf = dst;
size_t iconv_status;
ssize_t iconv_status;
iconv_status = iconv(
desc,