[libvirt] [PATCH] util: fix build mingw (and all non-linux) build failure

Laine Stump laine at laine.org
Wed Mar 7 18:20:53 UTC 2012


ATTRIBUTE_UNUSED was accidentally forgotten on one arg of a stub
function for functionality that's not present on non-linux
platforms. This causes a non-linux build with
--enable-compile-warnings=error to fail.
---

Pushed under build-breaker rule.

 src/util/pci.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/util/pci.c b/src/util/pci.c
index c8a5287..a6212f2 100644
--- a/src/util/pci.c
+++ b/src/util/pci.c
@@ -2219,7 +2219,8 @@ pciDeviceNetName(char *device_link_sysfs_path ATTRIBUTE_UNUSED,
 
 int
 pciDeviceGetVirtualFunctionInfo(const char *vf_sysfs_device_path ATTRIBUTE_UNUSED,
-                                char **pfname, int *vf_index ATTRIBUTE_UNUSED)
+                                char **pfname ATTRIBUTE_UNUSED,
+                                int *vf_index ATTRIBUTE_UNUSED)
 {
     pciReportError(VIR_ERR_INTERNAL_ERROR, _("pciDeviceGetVirtualFunctionInfo "
                    "is not supported on non-linux platforms"));
-- 
1.7.7.6




More information about the libvir-list mailing list