avoid a format-related warning

* src/qemu_driver.c (qemudStartVMDaemon): Use "%s".
This commit is contained in:
Jim Meyering 2009-02-03 13:09:18 +00:00
parent dff2114795
commit 6778ad0f07
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue, 3 Feb 2009 14:06:06 +0100 Jim Meyering <meyering@redhat.com>
avoid a format-related warning
* src/qemu_driver.c (qemudStartVMDaemon): Use "%s".
Tue, 3 Feb 2009 14:06:06 +0100 Jim Meyering <meyering@redhat.com>
build: enable redundant-const check

View File

@ -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;
}
}