These do not need initial values. Let them live in the bss.

-Erik
This commit is contained in:
Eric Andersen 2001-04-30 18:07:24 +00:00
parent defa4f93c2
commit 65504ac12c
4 changed files with 6 additions and 6 deletions

View File

@ -34,7 +34,7 @@
#endif
static long gid = -1;
static long gid;
static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
{

View File

@ -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)
{

View File

@ -34,7 +34,7 @@
#endif
static long gid = -1;
static long gid;
static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
{

View File

@ -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)
{