diff options
author | 2012-07-18 19:25:00 +0100 | |
---|---|---|
committer | 2012-07-19 14:42:53 +0100 | |
commit | bd7c36c57efe98c8dec8869a515113f021abd464 (patch) | |
tree | cbf936a8554a6782647bbf4cba49fc5a57a0fd36 /src/xenapi | |
parent | Replace use of qemuReportError with virReportError (diff) | |
download | libvirt-bd7c36c57efe98c8dec8869a515113f021abd464.tar.gz libvirt-bd7c36c57efe98c8dec8869a515113f021abd464.tar.bz2 libvirt-bd7c36c57efe98c8dec8869a515113f021abd464.zip |
Replace use of xenapiError with virReportError
Update the XenAPI driver to use virReportError instead of
the xenapiError custom macro
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'src/xenapi')
-rw-r--r-- | src/xenapi/xenapi_driver.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/xenapi/xenapi_driver.c b/src/xenapi/xenapi_driver.c index a91f49795..38a7cd0f6 100644 --- a/src/xenapi/xenapi_driver.c +++ b/src/xenapi/xenapi_driver.c @@ -43,10 +43,6 @@ #define VIR_FROM_THIS VIR_FROM_XENAPI -#define xenapiError(code, ...) \ - virReportErrorHelper(VIR_FROM_THIS, code, __FILE__, \ - __FUNCTION__, __LINE__, __VA_ARGS__) - static int xenapiDefaultConsoleType(const char *ostype) { @@ -1123,8 +1119,8 @@ xenapiDomainSetVcpusFlags (virDomainPtr dom, unsigned int nvcpus, xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session; if (flags != VIR_DOMAIN_VCPU_LIVE) { - xenapiError(VIR_ERR_INVALID_ARG, _("unsupported flags: (0x%x)"), - flags); + virReportError(VIR_ERR_INVALID_ARG, _("unsupported flags: (0x%x)"), + flags); return -1; } @@ -1293,8 +1289,8 @@ xenapiDomainGetVcpusFlags (virDomainPtr dom, unsigned int flags) xen_session *session = ((struct _xenapiPrivate *)(dom->conn->privateData))->session; if (flags != (VIR_DOMAIN_VCPU_LIVE | VIR_DOMAIN_VCPU_MAXIMUM)) { - xenapiError(VIR_ERR_INVALID_ARG, _("unsupported flags: (0x%x)"), - flags); + virReportError(VIR_ERR_INVALID_ARG, _("unsupported flags: (0x%x)"), + flags); return -1; } |