diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-12 21:42:17 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-12 21:42:17 +0000 |
commit | 61680ced25e3ffe351d4a05a05387b09d5602c11 (patch) | |
tree | d8f7b3cd70149f3e0e291cc10a14c06917d34cb5 /libbb | |
parent | f4440f180acd67f8e91728872a83aec6d7b0435f (diff) | |
download | busybox-w32-61680ced25e3ffe351d4a05a05387b09d5602c11.tar.gz busybox-w32-61680ced25e3ffe351d4a05a05387b09d5602c11.tar.bz2 busybox-w32-61680ced25e3ffe351d4a05a05387b09d5602c11.zip |
Remove pointless "const". Bloatcheck says 0 bytes difference.
git-svn-id: svn://busybox.net/trunk/busybox@16110 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 e88a5380f..0f0faaf74 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c | |||
@@ -490,7 +490,7 @@ void xlisten(int s, int backlog) | |||
490 | 490 | ||
491 | #ifdef L_xstat | 491 | #ifdef L_xstat |
492 | /* xstat() - a stat() which dies on failure with meaningful error message */ | 492 | /* xstat() - a stat() which dies on failure with meaningful error message */ |
493 | void xstat(const char * const name, struct stat *stat_buf) | 493 | void xstat(char *name, struct stat *stat_buf) |
494 | { | 494 | { |
495 | if (stat(name, stat_buf)) | 495 | if (stat(name, stat_buf)) |
496 | bb_perror_msg_and_die("Can't stat '%s'", name); | 496 | bb_perror_msg_and_die("Can't stat '%s'", name); |