diff options
author | Eric Andersen | 2001-04-30 18:07:24 +0000 |
---|---|---|
committer | Eric Andersen | 2001-04-30 18:07:24 +0000 |
commit | 65504ac12cdc4eff0a98fd50fff1a019fbb77f1b (patch) | |
tree | 5f04de9cbf691fcedc047fe998e460b347979bd9 /chgrp.c | |
parent | defa4f93c2b2edb5f19940cd63017d17da4866de (diff) | |
download | busybox-65504ac12cdc4eff0a98fd50fff1a019fbb77f1b.zip busybox-65504ac12cdc4eff0a98fd50fff1a019fbb77f1b.tar.gz |
These do not need initial values. Let them live in the bss.
-Erik
Diffstat (limited to 'chgrp.c')
-rw-r--r-- | chgrp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ #endif -static long gid = -1; +static long gid; static int fileAction(const char *fileName, struct stat *statbuf, void* junk) { |