aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chgrp.c2
-rw-r--r--chown.c4
-rw-r--r--coreutils/chgrp.c2
-rw-r--r--coreutils/chown.c4
4 files changed, 6 insertions, 6 deletions
diff --git a/chgrp.c b/chgrp.c
index ec1a0370c..fbc1036a8 100644
--- a/chgrp.c
+++ b/chgrp.c
@@ -34,7 +34,7 @@
34#endif 34#endif
35 35
36 36
37static long gid = -1; 37static long gid;
38 38
39static int fileAction(const char *fileName, struct stat *statbuf, void* junk) 39static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
40{ 40{
diff --git a/chown.c b/chown.c
index 9ff287251..011403378 100644
--- a/chown.c
+++ b/chown.c
@@ -33,8 +33,8 @@
33#define lchown chown 33#define lchown chown
34#endif 34#endif
35 35
36static long uid = -1; 36static long uid;
37static long gid = -1; 37static long gid;
38 38
39static int fileAction(const char *fileName, struct stat *statbuf, void* junk) 39static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
40{ 40{
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 @@
34#endif 34#endif
35 35
36 36
37static long gid = -1; 37static long gid;
38 38
39static int fileAction(const char *fileName, struct stat *statbuf, void* junk) 39static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
40{ 40{
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 @@
33#define lchown chown 33#define lchown chown
34#endif 34#endif
35 35
36static long uid = -1; 36static long uid;
37static long gid = -1; 37static long gid;
38 38
39static int fileAction(const char *fileName, struct stat *statbuf, void* junk) 39static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
40{ 40{