aboutsummaryrefslogtreecommitdiff
path: root/coreutils/echo.c
diff options
context:
space:
mode:
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 a673bb07a..d278c1143 100644
--- a/coreutils/echo.c
+++ b/coreutils/echo.c
@@ -71,7 +71,7 @@ int bb_echo(int ATTRIBUTE_UNUSED argc, char **argv)
71just_echo: 71just_echo:
72#endif 72#endif
73 while (*argv) { 73 while (*argv) {
74 register int c; 74 int c;
75 75
76 while ((c = *(*argv)++)) { 76 while ((c = *(*argv)++)) {
77 if (c == eflag) { /* Check for escape seq. */ 77 if (c == eflag) { /* Check for escape seq. */