From: Jiri Denemark Date: Mon, 13 Dec 2010 10:36:52 +0000 (+0100) Subject: util: Fix error message in __virExec X-Git-Tag: v0.8.7~92 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b2c9f92cab8f16584afeb4b70e16fc0c3f17913;p=thirdparty%2Flibvirt.git util: Fix error message in __virExec Remove superfluous ": %s" suffix from the error message. --- diff --git a/src/util/util.c b/src/util/util.c index 41dbefd294..7d3377b504 100644 --- a/src/util/util.c +++ b/src/util/util.c @@ -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; }