diff options
Diffstat (limited to 'coreutils/echo.c')
-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 a673bb07a..d278c1143 100644 --- a/coreutils/echo.c +++ b/coreutils/echo.c | |||
@@ -71,7 +71,7 @@ int bb_echo(int ATTRIBUTE_UNUSED argc, char **argv) | |||
71 | just_echo: | 71 | just_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. */ |