aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-25 03:12:26 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-25 03:12:26 +0000
commit592c37538d0a62f28b114e65f8ecda0cd856e724 (patch)
tree7fecfb678a7d3778540b056d6a49e54735d964ec
parentfb10736284d1bb67ad64655d65e10ace6fc6568e (diff)
downloadbusybox-w32-592c37538d0a62f28b114e65f8ecda0cd856e724.tar.gz
busybox-w32-592c37538d0a62f28b114e65f8ecda0cd856e724.tar.bz2
busybox-w32-592c37538d0a62f28b114e65f8ecda0cd856e724.zip
Stop gcc4 from nit-picking about signedness of char *.
git-svn-id: svn://busybox.net/trunk/busybox@11640 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--archival/libunarchive/decompress_bunzip2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/archival/libunarchive/decompress_bunzip2.c b/archival/libunarchive/decompress_bunzip2.c
index 07e3cf018..597ec85a3 100644
--- a/archival/libunarchive/decompress_bunzip2.c
+++ b/archival/libunarchive/decompress_bunzip2.c
@@ -514,7 +514,8 @@ decode_next_byte:
514/* Allocate the structure, read file header. If in_fd==-1, inbuf must contain 514/* Allocate the structure, read file header. If in_fd==-1, inbuf must contain
515 a complete bunzip file (len bytes long). If in_fd!=-1, inbuf and len are 515 a complete bunzip file (len bytes long). If in_fd!=-1, inbuf and len are
516 ignored, and data is read from file handle into temporary buffer. */ 516 ignored, and data is read from file handle into temporary buffer. */
517static int start_bunzip(bunzip_data **bdp, int in_fd, char *inbuf, int len) 517static int start_bunzip(bunzip_data **bdp, int in_fd, unsigned char *inbuf,
518 int len)
518{ 519{
519 bunzip_data *bd; 520 bunzip_data *bd;
520 unsigned int i,j,c; 521 unsigned int i,j,c;