libsa: gzipfs.c converts pointers to integer types with different sign

Signed versus unsigned char.
This commit is contained in:
Toomas Soome 2018-08-07 10:53:51 +00:00
parent 513f7db592
commit 6938805f41
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=337413

View File

@ -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;
};