Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-06-06 11:50:51 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2007-06-06 11:50:51 +0400
commitc084d2f205469358d594e89365e3e184f416f005 (patch)
tree415e5019875382ccbf76ecb3c0453fc3271fe3b4 /coreutils/echo.c
parent0696b8aae8c5e84d47893a78d6b7aeb416cba38e (diff)
echo: fix non-fancy echo
Diffstat (limited to 'coreutils/echo.c')
-rw-r--r--coreutils/echo.c2
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)
eflag = '\\',
nflag = 1, /* 1 -- print '\n' */
};
- ++argv;
+ arg = ++argv;
#else
const char *p;
char nflag = 1;