mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-03 10:25:16 +00:00
Fix error messages in qemu text monitor
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
parent
eb9945d9ae
commit
e6458393ab
@ -939,7 +939,7 @@ static int qemuMonitorTextSaveMemory(qemuMonitorPtr mon,
|
|||||||
|
|
||||||
if (qemuMonitorCommand(mon, cmd, &reply) < 0) {
|
if (qemuMonitorCommand(mon, cmd, &reply) < 0) {
|
||||||
qemuReportError(VIR_ERR_OPERATION_FAILED,
|
qemuReportError(VIR_ERR_OPERATION_FAILED,
|
||||||
_("could save memory region to '%s'"), path);
|
_("could not save memory region to '%s'"), path);
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -986,7 +986,7 @@ int qemuMonitorTextSetMigrationSpeed(qemuMonitorPtr mon,
|
|||||||
|
|
||||||
if (qemuMonitorCommand(mon, cmd, &info) < 0) {
|
if (qemuMonitorCommand(mon, cmd, &info) < 0) {
|
||||||
qemuReportError(VIR_ERR_OPERATION_FAILED,
|
qemuReportError(VIR_ERR_OPERATION_FAILED,
|
||||||
"%s", _("could restrict migration speed"));
|
"%s", _("could not restrict migration speed"));
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user