diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-23 23:15:43 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-23 23:15:43 +0200 |
commit | 606291beabab14c85a141c7a4225fbcab8d19fbd (patch) | |
tree | 4f46cd21214432feeb610e237e8dd49ef908c8f6 /findutils | |
parent | 1f27ab0d4bb65425496ff4ed0fbbd0f5bb32786f (diff) | |
download | busybox-w32-606291beabab14c85a141c7a4225fbcab8d19fbd.tar.gz busybox-w32-606291beabab14c85a141c7a4225fbcab8d19fbd.tar.bz2 busybox-w32-606291beabab14c85a141c7a4225fbcab8d19fbd.zip |
*: more portability fixes by Dan Fandrich
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/find.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/find.c b/findutils/find.c index 76f670942..47c86be15 100644 --- a/findutils/find.c +++ b/findutils/find.c | |||
@@ -74,7 +74,7 @@ typedef struct { | |||
74 | #endif | 74 | #endif |
75 | } action; | 75 | } action; |
76 | 76 | ||
77 | #define ACTS(name, arg...) typedef struct { action a; arg; } action_##name; | 77 | #define ACTS(name, ...) typedef struct { action a; __VA_ARGS__ } action_##name; |
78 | #define ACTF(name) \ | 78 | #define ACTF(name) \ |
79 | static int FAST_FUNC func_##name(const char *fileName UNUSED_PARAM, \ | 79 | static int FAST_FUNC func_##name(const char *fileName UNUSED_PARAM, \ |
80 | struct stat *statbuf UNUSED_PARAM, \ | 80 | struct stat *statbuf UNUSED_PARAM, \ |