diff options
author | Rob Landley <rob@landley.net> | 2007-08-21 01:42:54 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-08-21 01:42:54 -0500 |
commit | 6ed92f34c01157e03a9afdc6dc1822875cf0d615 (patch) | |
tree | f5e95c9570e112f74f6678cebd99ef63c0822bc8 /main.c | |
parent | 9303e2fc38944c235c84483f6301cf4d09901b8f (diff) | |
download | toybox-6ed92f34c01157e03a9afdc6dc1822875cf0d615.tar.gz |
Tweak error message.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -94,7 +94,7 @@ int toybox_main(void) if (toys.argv[1]) { if (toys.argv[1][0]!='-') { toy_exec(toys.argv+1); - error_exit("No behavior for %s\n",toys.argv[1]); + error_exit("Unknown command %s\n",toys.argv[1]); } } |