aboutsummaryrefslogtreecommitdiff
path: root/coreutils/chown.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-30 18:07:24 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-30 18:07:24 +0000
commit65504ac12cdc4eff0a98fd50fff1a019fbb77f1b (patch)
tree5f04de9cbf691fcedc047fe998e460b347979bd9 /coreutils/chown.c
parentdefa4f93c2b2edb5f19940cd63017d17da4866de (diff)
downloadbusybox-65504ac12cdc4eff0a98fd50fff1a019fbb77f1b.tar.gz
These do not need initial values. Let them live in the bss.
-Erik
Diffstat (limited to 'coreutils/chown.c')
-rw-r--r--coreutils/chown.c4
1 files changed, 2 insertions, 2 deletions
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 @@
#define lchown chown
#endif
-static long uid = -1;
-static long gid = -1;
+static long uid;
+static long gid;
static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
{