diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-01-30 19:48:23 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-01-30 19:48:23 +0000 |
commit | 5e678873f9ff7c95d43b278feee547ce989b3b20 (patch) | |
tree | 6b0bab1e0d6df7f659352acc7dc844663c11634c /editors/patch.c | |
parent | 2cdd4d56ffc3b467d5ffa76e3c4cd009dc311097 (diff) |
clean up yet more annoying signed/unsigned mismatches and fixup
yet more incorrect types
Diffstat (limited to 'editors/patch.c')
-rw-r--r-- | editors/patch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/patch.c b/editors/patch.c index bcd3c6830..d406a62bb 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; |