From e4c192655e2847dbc5ad2ca992474a32f2c34ba7 Mon Sep 17 00:00:00 2001 From: Gedare Bloom Date: Thu, 5 Sep 2013 13:09:37 -0400 Subject: dosfs: Unsigned compared against 0 Fix the type of "cmpltd" to be ssize_t so that assigning it to -1 will terminate processing as intended. --- cpukit/libfs/src/dosfs/msdos_dir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpukit/libfs/src/dosfs/msdos_dir.c b/cpukit/libfs/src/dosfs/msdos_dir.c index 253203cc2d..d7f6823ec9 100644 --- a/cpukit/libfs/src/dosfs/msdos_dir.c +++ b/cpukit/libfs/src/dosfs/msdos_dir.c @@ -78,7 +78,7 @@ msdos_dir_read(rtems_libio_t *iop, void *buffer, size_t count) const size_t buf_size = converter->buffer.size; uint32_t start = 0; ssize_t ret = 0; - uint32_t cmpltd = 0; + ssize_t cmpltd = 0; uint32_t j = 0, i = 0; uint32_t bts2rd = 0; uint32_t cur_cln = 0; -- cgit v1.2.3