Remove pointless "const". Bloatcheck says 0 bytes difference.

This commit is contained in:
Rob Landley 2006-09-12 21:42:17 +00:00
parent 1b2b5cfba8
commit 20cc6d567f
6 changed files with 9 additions and 8 deletions

View file

@ -490,7 +490,7 @@ void xlisten(int s, int backlog)
#ifdef L_xstat
/* xstat() - a stat() which dies on failure with meaningful error message */
void xstat(const char * const name, struct stat *stat_buf)
void xstat(char *name, struct stat *stat_buf)
{
if (stat(name, stat_buf))
bb_perror_msg_and_die("Can't stat '%s'", name);