]> xenbits.xensource.com Git - libvirt.git/commitdiff
node_device: HAL: Ignore return value of virStrToLong_ui
authorPeter Krempa <pkrempa@redhat.com>
Mon, 21 Jul 2014 14:32:53 +0000 (16:32 +0200)
committerPeter Krempa <pkrempa@redhat.com>
Mon, 21 Jul 2014 14:32:53 +0000 (16:32 +0200)
Commit 5df813177c3b609a8cf5db26ae94b26d4a40063d forgot to adjust a few
callers of virStrToLong_ui to ignore the returned value in some ancient
parts of the code.

src/node_device/node_device_hal.c

index 8656b5db38ba6088320acd3bd8085914ce2ab500..cd7d399ae18447a4ac734fecb3a2e8bca9ca3b20 100644 (file)
@@ -151,10 +151,10 @@ gather_pci_cap(LibHalContext *ctx, const char *udi,
     if (get_str_prop(ctx, udi, "pci.linux.sysfs_path", &sysfs_path) == 0) {
         char *p = strrchr(sysfs_path, '/');
         if (p) {
-            (void)virStrToLong_ui(p+1, &p, 16, &d->pci_dev.domain);
-            (void)virStrToLong_ui(p+1, &p, 16, &d->pci_dev.bus);
-            (void)virStrToLong_ui(p+1, &p, 16, &d->pci_dev.slot);
-            (void)virStrToLong_ui(p+1, &p, 16, &d->pci_dev.function);
+            ignore_value(virStrToLong_ui(p+1, &p, 16, &d->pci_dev.domain));
+            ignore_value(virStrToLong_ui(p+1, &p, 16, &d->pci_dev.bus));
+            ignore_value(virStrToLong_ui(p+1, &p, 16, &d->pci_dev.slot));
+            ignore_value(virStrToLong_ui(p+1, &p, 16, &d->pci_dev.function));
         }
 
         if (!virPCIGetPhysicalFunction(sysfs_path,