aboutsummaryrefslogtreecommitdiff
path: root/coreutils/libcoreutils
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/libcoreutils')
-rw-r--r--coreutils/libcoreutils/coreutils.h2
-rw-r--r--coreutils/libcoreutils/getopt_mk_fifo_nod.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/libcoreutils/coreutils.h b/coreutils/libcoreutils/coreutils.h
index 687c7cc5c..c1796b381 100644
--- a/coreutils/libcoreutils/coreutils.h
+++ b/coreutils/libcoreutils/coreutils.h
@@ -11,6 +11,6 @@ typedef int (*stat_func)(const char *fn, struct stat *ps);
11int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf); 11int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf);
12int cp_mv_stat(const char *fn, struct stat *fn_stat); 12int cp_mv_stat(const char *fn, struct stat *fn_stat);
13 13
14mode_t getopt_mk_fifo_nod(int argc, char **argv); 14mode_t getopt_mk_fifo_nod(char **argv);
15 15
16#endif 16#endif
diff --git a/coreutils/libcoreutils/getopt_mk_fifo_nod.c b/coreutils/libcoreutils/getopt_mk_fifo_nod.c
index 377621568..32e55a56b 100644
--- a/coreutils/libcoreutils/getopt_mk_fifo_nod.c
+++ b/coreutils/libcoreutils/getopt_mk_fifo_nod.c
@@ -23,7 +23,7 @@
23#include "libbb.h" 23#include "libbb.h"
24#include "coreutils.h" 24#include "coreutils.h"
25 25
26mode_t getopt_mk_fifo_nod(int argc, char **argv) 26mode_t getopt_mk_fifo_nod(char **argv)
27{ 27{
28 mode_t mode = 0666; 28 mode_t mode = 0666;
29 char *smode = NULL; 29 char *smode = NULL;