From 5b2c9f92cab8f16584afeb4b70e16fc0c3f17913 Mon Sep 17 00:00:00 2001 From: Jiri Denemark Date: Mon, 13 Dec 2010 11:36:52 +0100 Subject: [PATCH] util: Fix error message in __virExec Remove superfluous ": %s" suffix from the error message. --- src/util/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2