diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-03 19:57:50 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-03 19:57:50 +0000 |
commit | b816238d1a23646f04fe75c44fbb0a9da1eb1e76 (patch) | |
tree | d38d7aeeae4940732ce09c34bb7057fad4bc8f04 /libbb | |
parent | b9e10ce275d2cc9605b842ed7e14f0dd1d98a7d2 (diff) | |
download | busybox-w32-b816238d1a23646f04fe75c44fbb0a9da1eb1e76.tar.gz busybox-w32-b816238d1a23646f04fe75c44fbb0a9da1eb1e76.tar.bz2 busybox-w32-b816238d1a23646f04fe75c44fbb0a9da1eb1e76.zip |
fdformat: remove redundant check
git-svn-id: svn://busybox.net/trunk/busybox@16303 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 7b95e49f1..4aa1c3000 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c | |||
@@ -498,7 +498,7 @@ void xlisten(int s, int backlog) | |||
498 | void xstat(char *name, struct stat *stat_buf) | 498 | void xstat(char *name, struct stat *stat_buf) |
499 | { | 499 | { |
500 | if (stat(name, stat_buf)) | 500 | if (stat(name, stat_buf)) |
501 | bb_perror_msg_and_die("Can't stat '%s'", name); | 501 | bb_perror_msg_and_die("can't stat '%s'", name); |
502 | } | 502 | } |
503 | #endif | 503 | #endif |
504 | 504 | ||