diff options
author | Pavel Roskin <proski@gnu.org> | 2000-07-17 16:17:19 +0000 |
---|---|---|
committer | Pavel Roskin <proski@gnu.org> | 2000-07-17 16:17:19 +0000 |
commit | 47d4926244f6a444f812675f4ecff401dba5f8f7 (patch) | |
tree | 3fa51908f6eb9657a2e9696c2fe9c71001129f7e /coreutils/echo.c | |
parent | bf181b9338152759fd56c8009e9a962a84808e7c (diff) | |
download | busybox-w32-47d4926244f6a444f812675f4ecff401dba5f8f7.tar.gz busybox-w32-47d4926244f6a444f812675f4ecff401dba5f8f7.tar.bz2 busybox-w32-47d4926244f6a444f812675f4ecff401dba5f8f7.zip |
The result of getopt() is "int" and should be treated as such
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 73be8f2e2..924cdd40c 100644 --- a/coreutils/echo.c +++ b/coreutils/echo.c | |||
@@ -30,7 +30,7 @@ echo_main(int argc, char** argv) | |||
30 | { | 30 | { |
31 | register char **ap; | 31 | register char **ap; |
32 | char *p; | 32 | char *p; |
33 | register char c; | 33 | int c; |
34 | int nflag = 0; | 34 | int nflag = 0; |
35 | int eflag = 0; | 35 | int eflag = 0; |
36 | 36 | ||