commit | 61d9cdf2a9ccb9e4770d7723db8b18b8952778ce | [log] [tgz] |
---|---|---|
author | J.A. Magallon <jamagallon@able.es> | Fri Jul 15 22:14:43 2005 +0000 |
committer | Sam Ravnborg <sam@mars.(none)> | Wed Jul 27 22:27:08 2005 +0200 |
tree | b401885e7bb2583f55c9e465e7d91e73398ef7e5 | |
parent | 84c2a2eb348f3bd85ec8eb3bb95ba04f65f4e217 [diff] [blame] |
[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>
diff --git a/scripts/conmakehash.c b/scripts/conmakehash.c index 93dd23f2..e0c6891 100644 --- a/scripts/conmakehash.c +++ b/scripts/conmakehash.c
@@ -33,7 +33,7 @@ int getunicode(char **p0) { - unsigned char *p = *p0; + char *p = *p0; while (*p == ' ' || *p == '\t') p++;