diff options
-rw-r--r-- | lib/args.c | 2 | ||||
-rw-r--r-- | main.c | 2 | ||||
-rw-r--r-- | toys/help.c | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -81,7 +81,7 @@ static void gotflag(void) int type; // Did we recognize this option? - if (!gof.this && !gof.noerror) error_exit("Unknown option %s\n", gof.arg); + if (!gof.this && !gof.noerror) error_exit("Unknown option %s", gof.arg); else toys.optflags |= 1 << gof.this->shift; // Does this option take an argument? @@ -94,7 +94,7 @@ int toybox_main(void) if (toys.argv[1]) { if (toys.argv[1][0]!='-') { toy_exec(toys.argv+1); - error_exit("Unknown command %s\n",toys.argv[1]); + error_exit("Unknown command %s",toys.argv[1]); } } diff --git a/toys/help.c b/toys/help.c index 4687d0ec..ea70a1bf 100644 --- a/toys/help.c +++ b/toys/help.c @@ -20,7 +20,7 @@ int help_main(void) int i = t-toy_list; char *s = help_data; - if (!t) error_exit("Unknown command '%s'\n", *toys.optargs); + if (!t) error_exit("Unknown command '%s'", *toys.optargs); for (;;) { while (i--) s += strlen(s) + 1; if (*s != 255) break; |