From: Daniel P. Berrange Date: Mon, 15 Jun 2009 17:15:54 +0000 (+0000) Subject: Fix build on non-Linux targets X-Git-Tag: LIBVIRT_0_6_5~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4a6bc49771ebe9018659d1d722c92e20250a45d;p=thirdparty%2Flibvirt.git Fix build on non-Linux targets --- diff --git a/ChangeLog b/ChangeLog index 4085716de3..3f02dac617 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Jun 15 18:15:22 BST 2009 Daniel P. Berrange + + Fix build on non-Linux targets + * src/nodeinfo.c: s/nodeError/nodeReportError/ + Mon Jun 15 15:58:22 BST 2009 Daniel P. Berrange Fix build from tar.gz diff --git a/src/nodeinfo.c b/src/nodeinfo.c index 220acdcba8..e4863bbbf1 100644 --- a/src/nodeinfo.c +++ b/src/nodeinfo.c @@ -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 }