Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-05-17 09:24:24 +0400
committerErik Andersen <andersen@codepoet.org>2000-05-17 09:24:24 +0400
commit5b46d792f1b42b9f7afbcb8226185ab519c435cb (patch)
treeebf9b8d5a1675283710cade0dc42f5171fa97439 /chmod_chown_chgrp.c
parent499f65fb98a8258f8704b52efb3a99da0c82f785 (diff)
Some more portability updates
-Erik
Diffstat (limited to 'chmod_chown_chgrp.c')
-rw-r--r--chmod_chown_chgrp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/chmod_chown_chgrp.c b/chmod_chown_chgrp.c
index d5c21a220..c782eb3c4 100644
--- a/chmod_chown_chgrp.c
+++ b/chmod_chown_chgrp.c
@@ -32,8 +32,8 @@
#include <pwd.h>
-static uid_t uid = -1;
-static gid_t gid = -1;
+static unsigned long uid = -1;
+static unsigned long gid = -1;
static int whichApp;
static char *invocationName = NULL;
static char *theMode = NULL;