diff options
author | J.A. Magallon <jamagallon@able.es> | 2005-07-15 22:14:43 +0000 |
---|---|---|
committer | Sam Ravnborg <sam@mars.(none)> | 2005-07-27 22:27:08 +0200 |
commit | 61d9cdf2a9ccb9e4770d7723db8b18b8952778ce (patch) | |
tree | b401885e7bb2583f55c9e465e7d91e73398ef7e5 /scripts/conmakehash.c | |
parent | 84c2a2eb348f3bd85ec8eb3bb95ba04f65f4e217 (diff) | |
download | linux-3.10-61d9cdf2a9ccb9e4770d7723db8b18b8952778ce.tar.gz linux-3.10-61d9cdf2a9ccb9e4770d7723db8b18b8952778ce.tar.bz2 linux-3.10-61d9cdf2a9ccb9e4770d7723db8b18b8952778ce.zip |
[PATCH] kbuild: signed char fixes for scripts
This time I did not break anything... and they shut up gcc4 ;)
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/conmakehash.c')
-rw-r--r-- | scripts/conmakehash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/conmakehash.c b/scripts/conmakehash.c index 93dd23f21ec..e0c6891a9ad 100644 --- a/scripts/conmakehash.c +++ b/scripts/conmakehash.c @@ -33,7 +33,7 @@ void usage(char *argv0) int getunicode(char **p0) { - unsigned char *p = *p0; + char *p = *p0; while (*p == ' ' || *p == '\t') p++; |