diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-03 19:57:50 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-03 19:57:50 +0000 |
commit | b6332248ca4d781b4142fb9b6fe7e97a4a9ad59d (patch) | |
tree | d38d7aeeae4940732ce09c34bb7057fad4bc8f04 /libbb | |
parent | 9275814a9e6a3af390c932238c0b1130de8d0edd (diff) |
fdformat: remove redundant check
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) void xstat(char *name, struct stat *stat_buf) { if (stat(name, stat_buf)) - bb_perror_msg_and_die("Can't stat '%s'", name); + bb_perror_msg_and_die("can't stat '%s'", name); } #endif |