From: tangchen Date: Fri, 6 Jul 2012 01:53:11 +0000 (+0800) Subject: Fix a string format bug in qemu_cgroup.c X-Git-Tag: v0.9.11.5~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3fb882a3fe9e574dd55215de3a53d1af3e23c493;p=thirdparty%2Flibvirt.git Fix a string format bug in qemu_cgroup.c Signed-off-by: Tang Chen (cherry picked from commit 097da1abbd25da5876850785f6b9e742166b16d4) --- diff --git a/src/qemu/qemu_cgroup.c b/src/qemu/qemu_cgroup.c index a07b6cdb20..a18101d804 100644 --- a/src/qemu/qemu_cgroup.c +++ b/src/qemu/qemu_cgroup.c @@ -464,8 +464,8 @@ cleanup: rc = virCgroupSetCpuCfsPeriod(cgroup, old_period); if (rc < 0) virReportSystemError(-rc, - _("%s"), - "Unable to rollback cpu bandwidth period"); + "%s", + _("Unable to rollback cpu bandwidth period")); } return -1;