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 /echo.c | |
parent | bf181b9338152759fd56c8009e9a962a84808e7c (diff) |
The result of getopt() is "int" and should be treated as such
Diffstat (limited to 'echo.c')
-rw-r--r-- | echo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ echo_main(int argc, char** argv) { register char **ap; char *p; - register char c; + int c; int nflag = 0; int eflag = 0; |