This is an automated email from the git hooks/post-receive script.

sthibault pushed a commit to branch upstream
in repository hurd.

commit dd07e7f7ddb5d704599f798a8ef3d1c8a05cb9bf
Author: Ignazio Sgalmuzzo <[email protected]>
Date:   Wed Feb 19 20:07:40 2014 +0000

    libstore: fixed some pointer-sign related warnings
    
    libstore/do-bunzip2.c: fixed type modifier, avoiding cast
---
 libstore/do-bunzip2.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libstore/do-bunzip2.c b/libstore/do-bunzip2.c
index d599503..d2bc9da 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

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-hurd/hurd.git

Reply via email to