diff options
author | Ignazio Sgalmuzzo <ignaker@gmail.com> | 2014-02-19 20:07:40 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2014-02-19 11:09:46 -0800 |
commit | dd07e7f7ddb5d704599f798a8ef3d1c8a05cb9bf (patch) | |
tree | ebcd94ea0eeedfb7d5dba8bf39cc25fae5bc8584 /libstore | |
parent | 91090f8e8ef533ad39fc8060bbf1a69bcb0b5af7 (diff) |
libstore: fixed some pointer-sign related warnings
libstore/do-bunzip2.c: fixed type modifier, avoiding cast
Diffstat (limited to 'libstore')
-rw-r--r-- | libstore/do-bunzip2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstore/do-bunzip2.c b/libstore/do-bunzip2.c index d599503a..d2bc9da1 100644 --- a/libstore/do-bunzip2.c +++ b/libstore/do-bunzip2.c @@ -31,8 +31,8 @@ extern void (*unzip_error) (const char *msg); #define INBUFSIZ 0x1000 #define OUTBUFSIZ 0x1000 -static unsigned char inbuf[INBUFSIZ]; -static unsigned char outbuf[OUTBUFSIZ]; +static char inbuf[INBUFSIZ]; +static char outbuf[OUTBUFSIZ]; #ifdef SMALL_BZIP2 #define SMALL_MODE 1 |