diff options
author | bigbear <ns@bigbear.dk> | 2024-02-08 02:57:20 +0100 |
---|---|---|
committer | bigbear <ns@bigbear.dk> | 2024-02-08 19:52:53 +0100 |
commit | 08e01f35f747bfe30a40ea99cbcd63ad7fb94e7e (patch) | |
tree | a727faeb3ffb38d523b0700a63e6e537d295a152 /modules/devices/pci.c | |
parent | 4c249cfdc742d162fdb384fba61236cada3d9f29 (diff) |
FIX GCC Warnings
Diffstat (limited to 'modules/devices/pci.c')
-rw-r--r-- | modules/devices/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/devices/pci.c b/modules/devices/pci.c index c7114672..859fa339 100644 --- a/modules/devices/pci.c +++ b/modules/devices/pci.c @@ -45,7 +45,7 @@ static const struct { static const gchar *find_icon_for_class(uint32_t class) { - int i; + guint i; for (i = 0; i < G_N_ELEMENTS(class2icon); i++) { if (class2icon[i].class <= 0xff) { |