aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-12-01 21:52:40 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-12-01 21:52:40 +0000
commit10dab9f810c2db369553b3373dc391c2c22749ed (patch)
tree5501e873fbac8296f0bce1bfdc0b0a24c3c12309
parenta6d25d2c1fb832c6890d1b4677928a3c6632e19c (diff)
downloadbusybox-w32-10dab9f810c2db369553b3373dc391c2c22749ed.tar.gz
busybox-w32-10dab9f810c2db369553b3373dc391c2c22749ed.tar.bz2
busybox-w32-10dab9f810c2db369553b3373dc391c2c22749ed.zip
fix warning
git-svn-id: svn://busybox.net/trunk/busybox@6070 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--archival/libunarchive/decompress_unzip.c2
-rw-r--r--archival/libunarchive/unzip.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/archival/libunarchive/decompress_unzip.c b/archival/libunarchive/decompress_unzip.c
index 770e4141d..1b2d587d6 100644
--- a/archival/libunarchive/decompress_unzip.c
+++ b/archival/libunarchive/decompress_unzip.c
@@ -147,7 +147,7 @@ unsigned char *bytebuffer = NULL;
147unsigned int bytebuffer_offset = 0; 147unsigned int bytebuffer_offset = 0;
148unsigned int bytebuffer_size = 0; 148unsigned int bytebuffer_size = 0;
149 149
150static void fill_bytebuffer() 150static void fill_bytebuffer(void)
151{ 151{
152 if (bytebuffer_offset >= bytebuffer_size) { 152 if (bytebuffer_offset >= bytebuffer_size) {
153 /* Leave the first 4 bytes empty so we can always unwind the bitbuffer 153 /* Leave the first 4 bytes empty so we can always unwind the bitbuffer
diff --git a/archival/libunarchive/unzip.c b/archival/libunarchive/unzip.c
index 770e4141d..1b2d587d6 100644
--- a/archival/libunarchive/unzip.c
+++ b/archival/libunarchive/unzip.c
@@ -147,7 +147,7 @@ unsigned char *bytebuffer = NULL;
147unsigned int bytebuffer_offset = 0; 147unsigned int bytebuffer_offset = 0;
148unsigned int bytebuffer_size = 0; 148unsigned int bytebuffer_size = 0;
149 149
150static void fill_bytebuffer() 150static void fill_bytebuffer(void)
151{ 151{
152 if (bytebuffer_offset >= bytebuffer_size) { 152 if (bytebuffer_offset >= bytebuffer_size) {
153 /* Leave the first 4 bytes empty so we can always unwind the bitbuffer 153 /* Leave the first 4 bytes empty so we can always unwind the bitbuffer