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 | |
parent | 2cdd4d56ffc3b467d5ffa76e3c4cd009dc311097 (diff) | |
download | busybox-w32-5e678873f9ff7c95d43b278feee547ce989b3b20.tar.gz busybox-w32-5e678873f9ff7c95d43b278feee547ce989b3b20.tar.bz2 busybox-w32-5e678873f9ff7c95d43b278feee547ce989b3b20.zip |
clean up yet more annoying signed/unsigned mismatches and fixup
yet more incorrect types
Diffstat (limited to 'editors')
-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 | |||
52 | * returns malloc'ed filename | 52 | * returns malloc'ed filename |
53 | */ | 53 | */ |
54 | 54 | ||
55 | static unsigned char *extract_filename(char *line, unsigned short patch_level) | 55 | static char *extract_filename(char *line, unsigned short patch_level) |
56 | { | 56 | { |
57 | char *filename_start_ptr = line + 4; | 57 | char *filename_start_ptr = line + 4; |
58 | int i; | 58 | int i; |