From: Eric Andersen Date: Mon, 30 Apr 2001 18:07:24 +0000 (-0000) Subject: These do not need initial values. Let them live in the bss. X-Git-Tag: 0_52~268 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=65504ac12cdc4eff0a98fd50fff1a019fbb77f1b;p=oweals%2Fbusybox.git These do not need initial values. Let them live in the bss. -Erik --- diff --git a/chgrp.c b/chgrp.c index ec1a0370c..fbc1036a8 100644 --- a/chgrp.c +++ b/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) { diff --git a/chown.c b/chown.c index 9ff287251..011403378 100644 --- a/chown.c +++ b/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) { 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) { 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) {