Remove pointless "const". Bloatcheck says 0 bytes difference.
This commit is contained in:
parent
1b2b5cfba8
commit
20cc6d567f
6 changed files with 9 additions and 8 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue