mirror of https://gitee.com/openkylin/libvirt.git
qemu: Fix an error message in GetVcpus
This commit is contained in:
parent
e5edc3f03a
commit
48a7637d9f
|
@ -3481,7 +3481,8 @@ qemudDomainGetVcpus(virDomainPtr dom,
|
||||||
|
|
||||||
if (!virDomainIsActive(vm)) {
|
if (!virDomainIsActive(vm)) {
|
||||||
qemudReportError(dom->conn, dom, NULL, VIR_ERR_OPERATION_INVALID,
|
qemudReportError(dom->conn, dom, NULL, VIR_ERR_OPERATION_INVALID,
|
||||||
"%s",_("cannot pin vcpus on an inactive domain"));
|
"%s",
|
||||||
|
_("cannot list vcpu pinning for an inactive domain"));
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue