aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-30 18:07:24 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-30 18:07:24 +0000
commit31e7e2e9e6070e4e65e6009b56b0b5d93423163f (patch)
tree5f04de9cbf691fcedc047fe998e460b347979bd9 /coreutils
parentade94c638a79e22f0adcbfaddf97a5f087a9730a (diff)
downloadbusybox-w32-31e7e2e9e6070e4e65e6009b56b0b5d93423163f.tar.gz
busybox-w32-31e7e2e9e6070e4e65e6009b56b0b5d93423163f.tar.bz2
busybox-w32-31e7e2e9e6070e4e65e6009b56b0b5d93423163f.zip
These do not need initial values. Let them live in the bss.
-Erik git-svn-id: svn://busybox.net/trunk/busybox@2493 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/chgrp.c2
-rw-r--r--coreutils/chown.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c
index ec1a0370c..fbc1036a8 100644
--- a/coreutils/chgrp.c
+++ b/coreutils/chgrp.c
@@ -34,7 +34,7 @@
34#endif 34#endif
35 35
36 36
37static long gid = -1; 37static long gid;
38 38
39static int fileAction(const char *fileName, struct stat *statbuf, void* junk) 39static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
40{ 40{
diff --git a/coreutils/chown.c b/coreutils/chown.c
index 9ff287251..011403378 100644
--- a/coreutils/chown.c
+++ b/coreutils/chown.c
@@ -33,8 +33,8 @@
33#define lchown chown 33#define lchown chown
34#endif 34#endif
35 35
36static long uid = -1; 36static long uid;
37static long gid = -1; 37static long gid;
38 38
39static int fileAction(const char *fileName, struct stat *statbuf, void* junk) 39static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
40{ 40{