From c084d2f205469358d594e89365e3e184f416f005 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 6 Jun 2007 07:50:51 +0000 Subject: [PATCH] echo: fix non-fancy echo --- coreutils/echo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;