diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-06 07:50:51 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-06 07:50:51 +0000 |
commit | c084d2f205469358d594e89365e3e184f416f005 (patch) | |
tree | 415e5019875382ccbf76ecb3c0453fc3271fe3b4 | |
parent | 0696b8aae8c5e84d47893a78d6b7aeb416cba38e (diff) | |
download | busybox-w32-c084d2f205469358d594e89365e3e184f416f005.tar.gz busybox-w32-c084d2f205469358d594e89365e3e184f416f005.tar.bz2 busybox-w32-c084d2f205469358d594e89365e3e184f416f005.zip |
echo: fix non-fancy echo
-rw-r--r-- | coreutils/echo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/echo.c b/coreutils/echo.c index 9aad2c2ba..1016d3876 100644 --- a/coreutils/echo.c +++ b/coreutils/echo.c | |||
@@ -33,7 +33,7 @@ int bb_echo(char **argv) | |||
33 | eflag = '\\', | 33 | eflag = '\\', |
34 | nflag = 1, /* 1 -- print '\n' */ | 34 | nflag = 1, /* 1 -- print '\n' */ |
35 | }; | 35 | }; |
36 | ++argv; | 36 | arg = ++argv; |
37 | #else | 37 | #else |
38 | const char *p; | 38 | const char *p; |
39 | char nflag = 1; | 39 | char nflag = 1; |