From: Stefan Weil Date: Sat, 25 Feb 2012 13:01:42 +0000 (+0100) Subject: block/vmdk: Fix warning from splint (comparision of unsigned value) X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=75d1234103d47e59311203bf5e73f85b2e0fd983;p=qemu.git block/vmdk: Fix warning from splint (comparision of unsigned value) l1_entry_sectors will never be less than 0. Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- diff --git a/block/vmdk.c b/block/vmdk.c index 5623ac10cd..45c003a0f1 100644 --- a/block/vmdk.c +++ b/block/vmdk.c @@ -453,7 +453,7 @@ static int vmdk_open_vmdk4(BlockDriverState *bs, } l1_entry_sectors = le32_to_cpu(header.num_gtes_per_gte) * le64_to_cpu(header.granularity); - if (l1_entry_sectors <= 0) { + if (l1_entry_sectors == 0) { return -EINVAL; } l1_size = (le64_to_cpu(header.capacity) + l1_entry_sectors - 1)