From 6938805f4155af8e97fdc664ebbed63ecf70a9e4 Mon Sep 17 00:00:00 2001 From: Toomas Soome Date: Tue, 7 Aug 2018 10:53:51 +0000 Subject: [PATCH] libsa: gzipfs.c converts pointers to integer types with different sign Signed versus unsigned char. --- stand/libsa/gzipfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/libsa/gzipfs.c b/stand/libsa/gzipfs.c index 6057c2835fec..39e2f98eb1e0 100644 --- a/stand/libsa/gzipfs.c +++ b/stand/libsa/gzipfs.c @@ -40,7 +40,7 @@ struct z_file int zf_rawfd; off_t zf_dataoffset; z_stream zf_zstream; - char zf_buf[Z_BUFSIZE]; + unsigned char zf_buf[Z_BUFSIZE]; int zf_endseen; };