From: John Ferlan Date: Tue, 19 Jun 2018 22:54:15 +0000 (-0400) Subject: qemu: Adjust async job failure message X-Git-Tag: v4.5.0-rc1~70 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb3f6e56349dbdc26e4090dacb26b46cde30883f;p=thirdparty%2Flibvirt.git qemu: Adjust async job failure message Make it clearer what asyncJob type was passed and what was expected. Signed-off-by: John Ferlan ACKed-by: Michal Privoznik --- diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c index d7c0598cee..c136ed7f46 100644 --- a/src/qemu/qemu_domain.c +++ b/src/qemu/qemu_domain.c @@ -6666,7 +6666,8 @@ qemuDomainObjBeginNestedJob(virQEMUDriverPtr driver, if (asyncJob != priv->job.asyncJob) { virReportError(VIR_ERR_INTERNAL_ERROR, - _("unexpected async job %d"), asyncJob); + _("unexpected async job %d type expected %d"), + asyncJob, priv->job.asyncJob); return -1; }