diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/chown.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/chown.c b/coreutils/chown.c index 846e27c..4e766a9 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) { |