diff options
author | Rob Landley <rob@landley.net> | 2007-11-27 01:41:32 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-11-27 01:41:32 -0600 |
commit | 860f2634173d269d2dabfcbbccfb7f95dee4106c (patch) | |
tree | 07756b9c17e165386de2e1a6c279e57a2a0d1c69 /lib/args.c | |
parent | 0d88c38881088f0c8ee7a09dbba01821253a778c (diff) | |
download | toybox-860f2634173d269d2dabfcbbccfb7f95dee4106c.tar.gz |
Patch from Charlie Shepherd: remove extra \n from error_exit() arguments.
Diffstat (limited to 'lib/args.c')
-rw-r--r-- | lib/args.c | 2 |
1 files changed, 1 insertions, 1 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? |