diff options
author | J.A. Magallon <jamagallon@able.es> | 2005-07-15 18:14:43 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@mars.(none)> | 2005-07-27 16:27:08 -0400 |
commit | 61d9cdf2a9ccb9e4770d7723db8b18b8952778ce (patch) | |
tree | b401885e7bb2583f55c9e465e7d91e73398ef7e5 /scripts/conmakehash.c | |
parent | 84c2a2eb348f3bd85ec8eb3bb95ba04f65f4e217 (diff) |
[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 93dd23f21ec9..e0c6891a9ad4 100644 --- a/scripts/conmakehash.c +++ b/scripts/conmakehash.c | |||
@@ -33,7 +33,7 @@ void usage(char *argv0) | |||
33 | 33 | ||
34 | int getunicode(char **p0) | 34 | int getunicode(char **p0) |
35 | { | 35 | { |
36 | unsigned char *p = *p0; | 36 | char *p = *p0; |
37 | 37 | ||
38 | while (*p == ' ' || *p == '\t') | 38 | while (*p == ' ' || *p == '\t') |
39 | p++; | 39 | p++; |