mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 06:05:27 +00:00
Fix a string format bug in qemu_cgroup.c
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
This commit is contained in:
parent
e4cce2c9be
commit
097da1abbd
@ -473,8 +473,8 @@ cleanup:
|
|||||||
rc = virCgroupSetCpuCfsPeriod(cgroup, old_period);
|
rc = virCgroupSetCpuCfsPeriod(cgroup, old_period);
|
||||||
if (rc < 0)
|
if (rc < 0)
|
||||||
virReportSystemError(-rc,
|
virReportSystemError(-rc,
|
||||||
_("%s"),
|
"%s",
|
||||||
"Unable to rollback cpu bandwidth period");
|
_("Unable to rollback cpu bandwidth period"));
|
||||||
}
|
}
|
||||||
|
|
||||||
return -1;
|
return -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user