Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-30 22:07:24 +0400
committerEric Andersen <andersen@codepoet.org>2001-04-30 22:07:24 +0400
commit65504ac12cdc4eff0a98fd50fff1a019fbb77f1b (patch)
tree5f04de9cbf691fcedc047fe998e460b347979bd9 /coreutils/chgrp.c
parentdefa4f93c2b2edb5f19940cd63017d17da4866de (diff)
These do not need initial values. Let them live in the bss.
-Erik
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 @@
#endif
-static long gid = -1;
+static long gid;
static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
{