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 }