mirror of https://github.com/mirror/busybox.git
- fix warning about discarding qualifiers in initialization
parent
00d7d6cef6
commit
428a5cd0d3
|
@ -27,7 +27,7 @@
|
|||
*/
|
||||
static int valid_name(const struct dirent *d)
|
||||
{
|
||||
char *c = d->d_name;
|
||||
const char *c = d->d_name;
|
||||
|
||||
while (*c) {
|
||||
if (!isalnum(*c) && (*c != '_') && (*c != '-')) {
|
||||
|
|
Loading…
Reference in New Issue