fdformat: remove redundant check

This commit is contained in:
Denis Vlasenko 2006-10-03 19:57:50 +00:00
parent 9275814a9e
commit b6332248ca
2 changed files with 7 additions and 8 deletions

View file

@ -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