aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-30 19:48:23 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-30 19:48:23 +0000
commitba2b982f47abd46203ae5358070a9a7744e6cefb (patch)
tree6b0bab1e0d6df7f659352acc7dc844663c11634c /editors
parent1ab3906f1e1a1089635bc7f048ba60338e33d139 (diff)
downloadbusybox-w32-ba2b982f47abd46203ae5358070a9a7744e6cefb.tar.gz
busybox-w32-ba2b982f47abd46203ae5358070a9a7744e6cefb.tar.bz2
busybox-w32-ba2b982f47abd46203ae5358070a9a7744e6cefb.zip
clean up yet more annoying signed/unsigned mismatches and fixup
yet more incorrect types git-svn-id: svn://busybox.net/trunk/busybox@13725 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'editors')
-rw-r--r--editors/patch.c2
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
55static unsigned char *extract_filename(char *line, unsigned short patch_level) 55static 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;