diff options
| author | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2002-06-05 10:06:25 -0500 |
|---|---|---|
| committer | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2002-06-05 10:06:25 -0500 |
| commit | 4a48579423288feed2eba7de9fd1884999bdc01f (patch) | |
| tree | dde2674edc79bd21cf3d3466e0021fd682467294 /scripts | |
| parent | 79b1bf147d476e5180a2720e26fea34ec32d0883 (diff) | |
kbuild: Fix tolower() usage in scripts/fixdep.c
Not that it matters, since it's only used with 7bit chars, but
anyway.
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/fixdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/fixdep.c b/scripts/fixdep.c index 07c927c58f3f..4a42364ab18a 100644 --- a/scripts/fixdep.c +++ b/scripts/fixdep.c @@ -214,7 +214,7 @@ void use_config(char *m, int slen) if (*p == '_') *p = '/'; else - *p = tolower(*p); + *p = tolower((unsigned char)*p); } printf(" $(wildcard %s/include/config/%s.h) \\\n", topdir, s); } |
