diff options
Diffstat (limited to 'findutils/find.c')
-rw-r--r-- | findutils/find.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/findutils/find.c b/findutils/find.c index 51d26c00a..f2b89746f 100644 --- a/findutils/find.c +++ b/findutils/find.c | |||
@@ -74,9 +74,9 @@ typedef struct { | |||
74 | #endif | 74 | #endif |
75 | } action; | 75 | } action; |
76 | #define ACTS(name, arg...) typedef struct { action a; arg; } action_##name; | 76 | #define ACTS(name, arg...) typedef struct { action a; arg; } action_##name; |
77 | #define ACTF(name) static int func_##name(const char *fileName ATTRIBUTE_UNUSED, \ | 77 | #define ACTF(name) static int func_##name(const char *fileName UNUSED_PARAM, \ |
78 | struct stat *statbuf ATTRIBUTE_UNUSED, \ | 78 | struct stat *statbuf UNUSED_PARAM, \ |
79 | action_##name* ap ATTRIBUTE_UNUSED) | 79 | action_##name* ap UNUSED_PARAM) |
80 | ACTS(print) | 80 | ACTS(print) |
81 | ACTS(name, const char *pattern; bool iname;) | 81 | ACTS(name, const char *pattern; bool iname;) |
82 | USE_FEATURE_FIND_PATH( ACTS(path, const char *pattern;)) | 82 | USE_FEATURE_FIND_PATH( ACTS(path, const char *pattern;)) |
@@ -376,8 +376,8 @@ ACTF(context) | |||
376 | 376 | ||
377 | static int FAST_FUNC fileAction(const char *fileName, | 377 | static int FAST_FUNC fileAction(const char *fileName, |
378 | struct stat *statbuf, | 378 | struct stat *statbuf, |
379 | void *userData SKIP_FEATURE_FIND_MAXDEPTH(ATTRIBUTE_UNUSED), | 379 | void *userData SKIP_FEATURE_FIND_MAXDEPTH(UNUSED_PARAM), |
380 | int depth SKIP_FEATURE_FIND_MAXDEPTH(ATTRIBUTE_UNUSED)) | 380 | int depth SKIP_FEATURE_FIND_MAXDEPTH(UNUSED_PARAM)) |
381 | { | 381 | { |
382 | int i; | 382 | int i; |
383 | #if ENABLE_FEATURE_FIND_MAXDEPTH | 383 | #if ENABLE_FEATURE_FIND_MAXDEPTH |