aboutsummaryrefslogtreecommitdiff
path: root/coreutils/libcoreutils
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-06-10 19:29:37 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-06-10 19:29:37 +0000
commita7c5d2c6d95b8e352845a2e7e7425ea6240f6389 (patch)
treeca100a0ecd58d67991e4fa757186c72a9a9d3593 /coreutils/libcoreutils
parentb1e5addfedf9de4bf5dfa910756747b2b4c1f2bd (diff)
downloadbusybox-w32-a7c5d2c6d95b8e352845a2e7e7425ea6240f6389.tar.gz
busybox-w32-a7c5d2c6d95b8e352845a2e7e7425ea6240f6389.tar.bz2
busybox-w32-a7c5d2c6d95b8e352845a2e7e7425ea6240f6389.zip
getopt_mk_fifo_nod: heed warning
Diffstat (limited to 'coreutils/libcoreutils')
-rw-r--r--coreutils/libcoreutils/coreutils.h6
-rw-r--r--coreutils/libcoreutils/getopt_mk_fifo_nod.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/libcoreutils/coreutils.h b/coreutils/libcoreutils/coreutils.h
index 102c7b5be..687c7cc5c 100644
--- a/coreutils/libcoreutils/coreutils.h
+++ b/coreutils/libcoreutils/coreutils.h
@@ -8,9 +8,9 @@
8 8
9typedef int (*stat_func)(const char *fn, struct stat *ps); 9typedef int (*stat_func)(const char *fn, struct stat *ps);
10 10
11extern int 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);
12extern int cp_mv_stat(const char *fn, struct stat *fn_stat); 12int cp_mv_stat(const char *fn, struct stat *fn_stat);
13 13
14extern mode_t getopt_mk_fifo_nod(int argc, char **argv); 14mode_t getopt_mk_fifo_nod(int argc, 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 5065c3886..6fd2de73f 100644
--- a/coreutils/libcoreutils/getopt_mk_fifo_nod.c
+++ b/coreutils/libcoreutils/getopt_mk_fifo_nod.c
@@ -21,7 +21,7 @@
21 */ 21 */
22 22
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(int argc, char **argv)
27{ 27{