diff options
Diffstat (limited to 'debianutils')
-rw-r--r-- | debianutils/mktemp.c | 2 | ||||
-rw-r--r-- | debianutils/pipe_progress.c | 2 | ||||
-rw-r--r-- | debianutils/run_parts.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/debianutils/mktemp.c b/debianutils/mktemp.c index 7ed624526..b011fc10c 100644 --- a/debianutils/mktemp.c +++ b/debianutils/mktemp.c | |||
@@ -12,7 +12,7 @@ | |||
12 | #include "libbb.h" | 12 | #include "libbb.h" |
13 | 13 | ||
14 | int mktemp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 14 | int mktemp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
15 | int mktemp_main(int argc, char **argv) | 15 | int mktemp_main(int argc ATTRIBUTE_UNUSED, char **argv) |
16 | { | 16 | { |
17 | // -d Make a directory instead of a file | 17 | // -d Make a directory instead of a file |
18 | // -q Fail silently if an error occurs [bbox: ignored] | 18 | // -q Fail silently if an error occurs [bbox: ignored] |
diff --git a/debianutils/pipe_progress.c b/debianutils/pipe_progress.c index 4bfdf6aa4..cbdd38ff4 100644 --- a/debianutils/pipe_progress.c +++ b/debianutils/pipe_progress.c | |||
@@ -15,7 +15,7 @@ | |||
15 | * Activity is indicated by a '.' to stderr | 15 | * Activity is indicated by a '.' to stderr |
16 | */ | 16 | */ |
17 | int pipe_progress_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 17 | int pipe_progress_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
18 | int pipe_progress_main(int argc, char **argv) | 18 | int pipe_progress_main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) |
19 | { | 19 | { |
20 | RESERVE_CONFIG_BUFFER(buf, PIPE_PROGRESS_SIZE); | 20 | RESERVE_CONFIG_BUFFER(buf, PIPE_PROGRESS_SIZE); |
21 | time_t t = time(NULL); | 21 | time_t t = time(NULL); |
diff --git a/debianutils/run_parts.c b/debianutils/run_parts.c index 20f8b3ab8..2adad026d 100644 --- a/debianutils/run_parts.c +++ b/debianutils/run_parts.c | |||
@@ -79,7 +79,7 @@ static int bb_alphasort(const void *p1, const void *p2) | |||
79 | return (option_mask32 & OPT_r) ? -r : r; | 79 | return (option_mask32 & OPT_r) ? -r : r; |
80 | } | 80 | } |
81 | 81 | ||
82 | static int act(const char *file, struct stat *statbuf, void *args, int depth) | 82 | static int act(const char *file, struct stat *statbuf, void *args ATTRIBUTE_UNUSED, int depth) |
83 | { | 83 | { |
84 | if (depth == 1) | 84 | if (depth == 1) |
85 | return TRUE; | 85 | return TRUE; |
@@ -113,7 +113,7 @@ static const char runparts_longopts[] ALIGN1 = | |||
113 | #endif | 113 | #endif |
114 | 114 | ||
115 | int run_parts_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 115 | int run_parts_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
116 | int run_parts_main(int argc, char **argv) | 116 | int run_parts_main(int argc ATTRIBUTE_UNUSED, char **argv) |
117 | { | 117 | { |
118 | const char *umask_p = "22"; | 118 | const char *umask_p = "22"; |
119 | llist_t *arg_list = NULL; | 119 | llist_t *arg_list = NULL; |