From 5e678873f9ff7c95d43b278feee547ce989b3b20 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 30 Jan 2006 19:48:23 +0000 Subject: clean up yet more annoying signed/unsigned mismatches and fixup yet more incorrect types --- editors/patch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editors') diff --git a/editors/patch.c b/editors/patch.c index bcd3c68..d406a62 100644 --- a/editors/patch.c +++ b/editors/patch.c @@ -52,7 +52,7 @@ static int copy_lines(FILE *src_stream, FILE *dest_stream, const unsigned int li * returns malloc'ed filename */ -static unsigned char *extract_filename(char *line, unsigned short patch_level) +static char *extract_filename(char *line, unsigned short patch_level) { char *filename_start_ptr = line + 4; int i; -- cgit v1.1