commit | 47d4926244f6a444f812675f4ecff401dba5f8f7 | [log] [tgz] |
---|---|---|
author | Pavel Roskin <proski@gnu.org> | Mon Jul 17 16:17:19 2000 +0000 |
committer | Pavel Roskin <proski@gnu.org> | Mon Jul 17 16:17:19 2000 +0000 |
tree | 3fa51908f6eb9657a2e9696c2fe9c71001129f7e | |
parent | bf181b9338152759fd56c8009e9a962a84808e7c [diff] [blame] |
The result of getopt() is "int" and should be treated as such
diff --git a/coreutils/echo.c b/coreutils/echo.c index 73be8f2..924cdd4 100644 --- a/coreutils/echo.c +++ b/coreutils/echo.c
@@ -30,7 +30,7 @@ { register char **ap; char *p; - register char c; + int c; int nflag = 0; int eflag = 0;