mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-24 09:08:39 +08:00
dosfs: Unsigned compared against 0
Change the type for storing the return from iconv to be signed.
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user