aboutsummaryrefslogtreecommitdiff
path: root/coreutils/chgrp.c
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/chgrp.c
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/chgrp.c')
-rw-r--r--coreutils/chgrp.c2
1 files changed, 1 insertions, 1 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{