[PATCH] Kill a bunch of pointer sign warnings for gcc4

- Raw hashes should be unsigned char.
 - String functions want signed char.
 - Hash and compress functions want unsigned char.

Signed-off By: Brian Gerst <bgerst@didntduck.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Brian Gerst
2005-05-18 08:14:09 -04:00
committed by Linus Torvalds
parent 02481aec2a
commit bf0f910d1d
10 changed files with 23 additions and 23 deletions

View File

@ -48,7 +48,7 @@ static void show_file(int pfx, struct cache_entry *ce)
}
static void show_modified(int oldmode, int mode,
const char *old_sha1, const char *sha1,
const unsigned char *old_sha1, const unsigned char *sha1,
char *path)
{
char old_sha1_hex[41];
@ -64,7 +64,7 @@ static void show_modified(int oldmode, int mode,
int main(int argc, char **argv)
{
static const char null_sha1[20] = { 0, };
static const unsigned char null_sha1[20] = { 0, };
int entries = read_cache();
int i;