diff options
author | Denis Vlasenko | 2007-01-27 13:45:17 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-01-27 13:45:17 +0000 |
commit | 434ad5456b0468e469c9da140871121f87a1377b (patch) | |
tree | c7ee764e3171e0fae54712f63cb541f3c94c59d2 /include/libbb.h | |
parent | e0eebc1ef3816bd75988021376a368dfe19470c5 (diff) | |
download | busybox-434ad5456b0468e469c9da140871121f87a1377b.zip busybox-434ad5456b0468e469c9da140871121f87a1377b.tar.gz |
fix warning in find.c
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 8b98423..540170c 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); |