aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-01-27 13:45:17 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-01-27 13:45:17 +0000
commit434ad5456b0468e469c9da140871121f87a1377b (patch)
treec7ee764e3171e0fae54712f63cb541f3c94c59d2 /include
parente0eebc1ef3816bd75988021376a368dfe19470c5 (diff)
downloadbusybox-434ad5456b0468e469c9da140871121f87a1377b.tar.gz
fix warning in find.c
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 8b9842344..540170cdd 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -259,7 +259,7 @@ extern DIR *warn_opendir(const char *path);
char *xgetcwd(char *cwd);
char *xreadlink(const char *path);
char *xmalloc_realpath(const char *path);
-extern void xstat(char *filename, struct stat *buf);
+extern void xstat(const char *filename, struct stat *buf);
extern pid_t spawn(char **argv);
extern pid_t xspawn(char **argv);
extern int wait4pid(int pid);