[libvirt] [PATCH 2/2] virutil: fix virGetSCSIHostNumber stub return type

Roman Bogorodskiy bogorodskiy at gmail.com
Wed Oct 29 18:20:48 UTC 2014


The virGetSCSIHostNumber function return type is int, however
its stubbed version returns NULL. That results in a build fail
on systems that uses the stubbed version. Fix by using a proper
return type.
---
 src/util/virutil.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/util/virutil.c b/src/util/virutil.c
index 3e7f7a2..1116fda 100644
--- a/src/util/virutil.c
+++ b/src/util/virutil.c
@@ -2298,7 +2298,7 @@ virGetSCSIHostNumber(const char *adapter_name ATTRIBUTE_UNUSED,
                      unsigned int *result ATTRIBUTE_UNUSED)
 {
     virReportSystemError(ENOSYS, "%s", _("Not supported on this platform"));
-    return NULL;
+    return -1;
 }
 
 char *
-- 
2.0.2




More information about the libvir-list mailing list