aboutsummaryrefslogtreecommitdiff
path: root/toys
diff options
context:
space:
mode:
Diffstat (limited to 'toys')
-rw-r--r--toys/help.c2
1 files changed, 1 insertions, 1 deletions
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;