From: Philippe Mathieu-Daudé Date: Mon, 9 Dec 2019 09:49:59 +0000 (+0100) Subject: hw/pci-host/i440fx: Use size_t to iterate over ARRAY_SIZE() X-Git-Tag: v5.0.0-rc0~175^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2d61acebe8d8891b5f63fc7221926c1d00bdbd22;p=thirdparty%2Fqemu.git hw/pci-host/i440fx: Use size_t to iterate over ARRAY_SIZE() We don't enforce the -Wsign-conversion CPPFLAG, but it doesn't hurt to avoid this warning: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion] Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Thomas Huth Message-Id: <20191209095002.32194-4-philmd@redhat.com> Signed-off-by: Paolo Bonzini --- diff --git a/hw/pci-host/i440fx.c b/hw/pci-host/i440fx.c index fbdc563599c..0cc80b276dd 100644 --- a/hw/pci-host/i440fx.c +++ b/hw/pci-host/i440fx.c @@ -419,12 +419,11 @@ out: static void igd_pt_i440fx_realize(PCIDevice *pci_dev, Error **errp) { uint32_t val = 0; - int i, num; + size_t i; int pos, len; Error *local_err = NULL; - num = ARRAY_SIZE(igd_host_bridge_infos); - for (i = 0; i < num; i++) { + for (i = 0; i < ARRAY_SIZE(igd_host_bridge_infos); i++) { pos = igd_host_bridge_infos[i].offset; len = igd_host_bridge_infos[i].len; host_pci_config_read(pos, len, &val, &local_err);