aboutsummaryrefslogtreecommitdiff
path: root/coreutils/echo.c
diff options
context:
space:
mode:
authorproski <proski@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-07-17 16:17:19 +0000
committerproski <proski@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-07-17 16:17:19 +0000
commit05cb9204f17116bccc51f72ee0f3b77552632023 (patch)
tree3fa51908f6eb9657a2e9696c2fe9c71001129f7e /coreutils/echo.c
parentd353f773bab8c0f92e149a74400aa31b57da9d05 (diff)
downloadbusybox-w32-05cb9204f17116bccc51f72ee0f3b77552632023.tar.gz
busybox-w32-05cb9204f17116bccc51f72ee0f3b77552632023.tar.bz2
busybox-w32-05cb9204f17116bccc51f72ee0f3b77552632023.zip
The result of getopt() is "int" and should be treated as such
git-svn-id: svn://busybox.net/trunk/busybox@865 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 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