diff options
| author | Stefan Weil | 2010-09-30 21:15:39 +0200 |
|---|---|---|
| committer | Blue Swirl | 2010-10-03 08:40:54 +0200 |
| commit | d523d5d69409a2bb3b5a2c53179d190d2a8c06b2 (patch) | |
| tree | ad47fa492d998cba556940adbfa00e75c76045c7 | |
| parent | virtio-9p: Use GCC_FMT_ATTR and fix a format warning (diff) | |
| download | qemu-d523d5d69409a2bb3b5a2c53179d190d2a8c06b2.tar.gz qemu-d523d5d69409a2bb3b5a2c53179d190d2a8c06b2.tar.xz qemu-d523d5d69409a2bb3b5a2c53179d190d2a8c06b2.zip | |
block/vvfat: Fix compiler warning in debug code
Fix this compiler warning:
./block/vvfat.c:2285: error: comparison of unsigned expression >= 0 is always true
Cc: Blue Swirl <blauwirbel@gmail.com>
Cc: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
| -rw-r--r-- | block/vvfat.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/block/vvfat.c b/block/vvfat.c index 53e57bf228..26dd474bb5 100644 --- a/block/vvfat.c +++ b/block/vvfat.c @@ -2282,7 +2282,6 @@ static void check1(BDRVVVFATState* s) fprintf(stderr, "deleted\n"); continue; } - assert(mapping->dir_index >= 0); assert(mapping->dir_index < s->directory.next); direntry_t* direntry = array_get(&(s->directory), mapping->dir_index); assert(mapping->begin == begin_of_direntry(direntry) || mapping->first_mapping_index >= 0); |
