Commit 4a485794 authored by Kai Germaschewski's avatar Kai Germaschewski

kbuild: Fix tolower() usage in scripts/fixdep.c

Not that it matters, since it's only used with 7bit chars, but
anyway.
parent 79b1bf14
...@@ -214,7 +214,7 @@ void use_config(char *m, int slen) ...@@ -214,7 +214,7 @@ void use_config(char *m, int slen)
if (*p == '_') if (*p == '_')
*p = '/'; *p = '/';
else else
*p = tolower(*p); *p = tolower((unsigned char)*p);
} }
printf(" $(wildcard %s/include/config/%s.h) \\\n", topdir, s); printf(" $(wildcard %s/include/config/%s.h) \\\n", topdir, s);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment