From 9c9afba4c0b48d9bc3862eb0fb07cf49c1077628 Mon Sep 17 00:00:00 2001 From: Jovanka Gulicoska Date: Tue, 7 Jun 2016 17:59:58 +0200 Subject: [PATCH] xen: Replace VIR_ERROR with standard vir*Error in state driver init --- src/xen/xen_driver.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/xen/xen_driver.c b/src/xen/xen_driver.c index db8f74ed39..8806081865 100644 --- a/src/xen/xen_driver.c +++ b/src/xen/xen_driver.c @@ -407,7 +407,6 @@ static virDrvOpenStatus xenUnifiedConnectOpen(virConnectPtr conn, virConnectAuthPtr auth, unsigned int flags) { xenUnifiedPrivatePtr priv; - char ebuf[1024]; /* * Only the libvirtd instance can open this driver. @@ -532,8 +531,8 @@ xenUnifiedConnectOpen(virConnectPtr conn, virConnectAuthPtr auth, unsigned int f goto error; if (virFileMakePath(priv->saveDir) < 0) { - VIR_ERROR(_("Errored to create save dir '%s': %s"), priv->saveDir, - virStrerror(errno, ebuf, sizeof(ebuf))); + virReportSystemError(errno, _("Errored to create save dir '%s'"), + priv->saveDir); goto error; }