diff options
Diffstat (limited to 'coreutils/mkfifo.c')
-rw-r--r-- | coreutils/mkfifo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/mkfifo.c b/coreutils/mkfifo.c index d298adae0..d9261b96a 100644 --- a/coreutils/mkfifo.c +++ b/coreutils/mkfifo.c | |||
@@ -14,12 +14,12 @@ | |||
14 | #include "libcoreutils/coreutils.h" | 14 | #include "libcoreutils/coreutils.h" |
15 | 15 | ||
16 | int mkfifo_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 16 | int mkfifo_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
17 | int mkfifo_main(int argc, char **argv) | 17 | int mkfifo_main(int argc ATTRIBUTE_UNUSED, char **argv) |
18 | { | 18 | { |
19 | mode_t mode; | 19 | mode_t mode; |
20 | int retval = EXIT_SUCCESS; | 20 | int retval = EXIT_SUCCESS; |
21 | 21 | ||
22 | mode = getopt_mk_fifo_nod(argc, argv); | 22 | mode = getopt_mk_fifo_nod(argv); |
23 | 23 | ||
24 | argv += optind; | 24 | argv += optind; |
25 | if (!*argv) { | 25 | if (!*argv) { |