aboutsummaryrefslogtreecommitdiff
path: root/coreutils/chown.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-02-08 23:36:16 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-02-08 23:36:16 +0000
commita88cb5025c3ffd9dc4e7bde58aa58b63afcf65bd (patch)
treef15f2946e7d1694a0e92ca5df4addca986e4f40b /coreutils/chown.c
parent3aeaee33b6de00da1603a81fcebb15c5971b7c0a (diff)
downloadbusybox-a88cb5025c3ffd9dc4e7bde58aa58b63afcf65bd.tar.gz
Patch from mathuria, compatability with solaris
Diffstat (limited to 'coreutils/chown.c')
-rw-r--r--coreutils/chown.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/chown.c b/coreutils/chown.c
index 846e27c20..4e766a90b 100644
--- a/coreutils/chown.c
+++ b/coreutils/chown.c
@@ -35,7 +35,7 @@
static long uid;
static long gid;
-static int (*chown_func)(const char *, __uid_t, __gid_t) = chown;
+static int (*chown_func)(const char *, uid_t, gid_t) = chown;
static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
{