diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-07-10 16:25:34 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-07-10 16:25:34 +0000 |
commit | cf7b6b7c5bd72ef60d53dbc3af80ca359b2521a1 (patch) | |
tree | 69178c9b08ef39c668acb186b81732f774af29a5 | |
parent | b6517fd9a8a7fbef4b5b5e966824502ea6920a25 (diff) | |
download | busybox-w32-cf7b6b7c5bd72ef60d53dbc3af80ca359b2521a1.tar.gz busybox-w32-cf7b6b7c5bd72ef60d53dbc3af80ca359b2521a1.tar.bz2 busybox-w32-cf7b6b7c5bd72ef60d53dbc3af80ca359b2521a1.zip |
Cleanup from vodz
git-svn-id: svn://busybox.net/trunk/busybox@3052 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | chown.c | 2 | ||||
-rw-r--r-- | coreutils/chown.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -36,7 +36,7 @@ | |||
36 | static long uid; | 36 | static long uid; |
37 | static long gid; | 37 | static long gid; |
38 | 38 | ||
39 | static int (*chown_func)() = chown; | 39 | static int (*chown_func)(const char *, __uid_t, __gid_t) = chown; |
40 | 40 | ||
41 | static int fileAction(const char *fileName, struct stat *statbuf, void* junk) | 41 | static int fileAction(const char *fileName, struct stat *statbuf, void* junk) |
42 | { | 42 | { |
diff --git a/coreutils/chown.c b/coreutils/chown.c index a65607204..d1e52deda 100644 --- a/coreutils/chown.c +++ b/coreutils/chown.c | |||
@@ -36,7 +36,7 @@ | |||
36 | static long uid; | 36 | static long uid; |
37 | static long gid; | 37 | static long gid; |
38 | 38 | ||
39 | static int (*chown_func)() = chown; | 39 | static int (*chown_func)(const char *, __uid_t, __gid_t) = chown; |
40 | 40 | ||
41 | static int fileAction(const char *fileName, struct stat *statbuf, void* junk) | 41 | static int fileAction(const char *fileName, struct stat *statbuf, void* junk) |
42 | { | 42 | { |