1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-03-20 07:59:00 +00:00

util: Fix error message in __virExec

Remove superfluous ": %s" suffix from the error message.
This commit is contained in:
Jiri Denemark 2010-12-13 11:36:52 +01:00
parent 99800e54b7
commit 5b2c9f92ca

View File

@ -617,7 +617,7 @@ __virExec(const char *const*argv,
if (chdir("/") < 0) {
virReportSystemError(errno,
"%s", _("cannot change to root directory: %s"));
"%s", _("cannot change to root directory"));
goto fork_error;
}