diff options
Diffstat (limited to 'Src')
-rw-r--r-- | Src/Modules/cap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/Modules/cap.c b/Src/Modules/cap.c index 4ef8d9cb3..a84e4d246 100644 --- a/Src/Modules/cap.c +++ b/Src/Modules/cap.c @@ -33,7 +33,7 @@ #ifdef HAVE_CAP_GET_PROC static int -bin_cap(char *nam, char **argv, Options ops, int func) +bin_cap(char *nam, char **argv, UNUSED(Options ops), UNUSED(int func)) { int ret = 0; cap_t caps; @@ -64,7 +64,7 @@ bin_cap(char *nam, char **argv, Options ops, int func) } static int -bin_getcap(char *nam, char **argv, Options ops, int func) +bin_getcap(char *nam, char **argv, UNUSED(Options ops), UNUSED(int func)) { int ret = 0; @@ -85,7 +85,7 @@ bin_getcap(char *nam, char **argv, Options ops, int func) } static int -bin_setcap(char *nam, char **argv, Options ops, int func) +bin_setcap(char *nam, char **argv, UNUSED(Options ops), UNUSED(int func)) { cap_t caps; int ret = 0; |