summaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer2007-06-06 17:49:03 +0000
committerBernhard Reutner-Fischer2007-06-06 17:49:03 +0000
commit8a37a2a352d9a814e7d399b61bebb158cd34539f (patch)
tree8dc7a17e1cce792f490f5723d1f0013c3ab7ab1c /coreutils
parent9cb801884ac3c84c4be8995418d2435602ac36df (diff)
downloadbusybox-8a37a2a352d9a814e7d399b61bebb158cd34539f.zip
busybox-8a37a2a352d9a814e7d399b61bebb158cd34539f.tar.gz
- fix non-fancy echo by pulling r18752 from trunk.
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/echo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/echo.c b/coreutils/echo.c
index 9aad2c2..e1eea00 100644
--- a/coreutils/echo.c
+++ b/coreutils/echo.c
@@ -33,7 +33,7 @@ int bb_echo(char **argv)
eflag = '\\',
nflag = 1, /* 1 -- print '\n' */
};
- ++argv;
+ arg = *++argv;
#else
const char *p;
char nflag = 1;