diff options
Diffstat (limited to 'util-linux/script.c')
-rw-r--r-- | util-linux/script.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util-linux/script.c b/util-linux/script.c index a4aaa422f..c37fd9d61 100644 --- a/util-linux/script.c +++ b/util-linux/script.c | |||
@@ -15,13 +15,13 @@ | |||
15 | 15 | ||
16 | static smallint fd_count = 2; | 16 | static smallint fd_count = 2; |
17 | 17 | ||
18 | static void handle_sigchld(int sig) | 18 | static void handle_sigchld(int sig ATTRIBUTE_UNUSED) |
19 | { | 19 | { |
20 | fd_count = 0; | 20 | fd_count = 0; |
21 | } | 21 | } |
22 | 22 | ||
23 | int script_main(int argc, char *argv[]) MAIN_EXTERNALLY_VISIBLE; | 23 | int script_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
24 | int script_main(int argc, char *argv[]) | 24 | int script_main(int argc ATTRIBUTE_UNUSED, char **argv) |
25 | { | 25 | { |
26 | int opt; | 26 | int opt; |
27 | int mode; | 27 | int mode; |