* src/qemu_driver.c: fix an error message, patch by Nguyen Anh Quynh

Daniel
This commit is contained in:
Daniel Veillard 2008-09-04 13:20:28 +00:00
parent b9ed7914c2
commit a8d0600762
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Sep 4 15:18:00 CEST 2008 Daniel Veillard <veillard@redhat.com>
* src/qemu_driver.c: fix an error message, patch by Nguyen Anh Quynh
Thu Sep 4 14:16:20 BST 2008 Daniel P. Berrange <berrange@redhat.com>
* qemud/Makefile.am: Fix make check when augparse is not

View File

@ -3637,7 +3637,7 @@ qemudDomainMemoryPeek (virDomainPtr dom,
snprintf (cmd, sizeof cmd, "memsave %llu %zi \"%s\"", offset, size, tmp);
if (qemudMonitorCommand (driver, vm, cmd, &info) < 0) {
qemudReportError (dom->conn, dom, NULL, VIR_ERR_OPERATION_FAILED,
"%s", _("'info blockstats' command failed"));
"%s", _("'memsave' command failed"));
goto done;
}