]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix build on non-Linux targets
authorDaniel P. Berrange <berrange@redhat.com>
Mon, 15 Jun 2009 17:15:54 +0000 (17:15 +0000)
committerDaniel P. Berrange <berrange@redhat.com>
Mon, 15 Jun 2009 17:15:54 +0000 (17:15 +0000)
ChangeLog
src/nodeinfo.c

index 4085716de331def712868dc012937ec80f25193d..3f02dac6177efa23270e82a4a4c9c1166ce6a63e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Jun 15 18:15:22 BST 2009 Daniel P. Berrange <berrange@redhat.com>
+
+       Fix build on non-Linux targets
+       * src/nodeinfo.c: s/nodeError/nodeReportError/
+
 Mon Jun 15 15:58:22 BST 2009 Daniel P. Berrange <berrange@redhat.com>
 
        Fix build from tar.gz
index 220acdcba803d89e04d0d8d018e12b82aca6164a..e4863bbbf16fd858afb4d74f98d83abb62b4c9b9 100644 (file)
@@ -170,8 +170,8 @@ int nodeGetInfo(virConnectPtr conn,
     }
 #else
     /* XXX Solaris will need an impl later if they port QEMU driver */
-    nodeError(conn, VIR_ERR_NO_SUPPORT, "%s"
-              _("node info not implemented on this platform"));
+    nodeReportError(conn, VIR_ERR_NO_SUPPORT, "%s",
+                    _("node info not implemented on this platform"));
     return -1;
 #endif
 }