diff --git a/ChangeLog b/ChangeLog index 78635bb64d..9a7418f4d0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue, 3 Feb 2009 14:06:06 +0100 Jim Meyering + + avoid a format-related warning + * src/qemu_driver.c (qemudStartVMDaemon): Use "%s". + Tue, 3 Feb 2009 14:06:06 +0100 Jim Meyering build: enable redundant-const check diff --git a/src/qemu_driver.c b/src/qemu_driver.c index 09f69bf1c2..ebcdd889b9 100644 --- a/src/qemu_driver.c +++ b/src/qemu_driver.c @@ -1251,7 +1251,7 @@ static int qemudStartVMDaemon(virConnectPtr conn, qemudLog(QEMUD_WARN, _("Domain %s didn't show up\n"), vm->def->name); } else { qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR, - _("Unable to daemonize QEMU process")); + "%s", _("Unable to daemonize QEMU process")); ret = -1; } }