summaryrefslogtreecommitdiff
path: root/src/core/args.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/args.c')
-rw-r--r--src/core/args.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/core/args.c b/src/core/args.c
index 9359b7b5..093a8d56 100644
--- a/src/core/args.c
+++ b/src/core/args.c
@@ -52,12 +52,10 @@ void args_execute(int argc, char *argv[])
while ((nextopt = poptGetNextOpt(con)) > 0) ;
if (nextopt != -1) {
- printf(_("Error on option %s: %s.\n"
- "Run '%s --help' to see a full list of "
- "available command line options.\n"),
- poptBadOption(con, 0),
- poptStrerror(nextopt),
- argv[0]);
+ printf("Error on option %s: %s.\n"
+ "Run '%s --help' to see a full list of "
+ "available command line options.\n",
+ poptBadOption(con, 0), poptStrerror(nextopt), argv[0]);
exit(1);
}