diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-27 13:45:17 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-27 13:45:17 +0000 |
commit | 434ad5456b0468e469c9da140871121f87a1377b (patch) | |
tree | c7ee764e3171e0fae54712f63cb541f3c94c59d2 /libbb | |
parent | e0eebc1ef3816bd75988021376a368dfe19470c5 (diff) | |
download | busybox-w32-434ad5456b0468e469c9da140871121f87a1377b.tar.gz busybox-w32-434ad5456b0468e469c9da140871121f87a1377b.tar.bz2 busybox-w32-434ad5456b0468e469c9da140871121f87a1377b.zip |
fix warning in find.c
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/xfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 4d85b1181..f7300a6d9 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c | |||
@@ -568,7 +568,7 @@ void xlisten(int s, int backlog) | |||
568 | } | 568 | } |
569 | 569 | ||
570 | // xstat() - a stat() which dies on failure with meaningful error message | 570 | // xstat() - a stat() which dies on failure with meaningful error message |
571 | void xstat(char *name, struct stat *stat_buf) | 571 | void xstat(const char *name, struct stat *stat_buf) |
572 | { | 572 | { |
573 | if (stat(name, stat_buf)) | 573 | if (stat(name, stat_buf)) |
574 | bb_perror_msg_and_die("can't stat '%s'", name); | 574 | bb_perror_msg_and_die("can't stat '%s'", name); |