Author: tsoome
Date: Tue Aug 7 10:53:51 2018
New Revision: 337413
URL: https://svnweb.freebsd.org/changeset/base/337413
Log:
libsa: gzipfs.c converts pointers to integer types with different sign
Signed versus unsigned char.
Modified:
head/stand/libsa/gzipfs.c
Modified: head/stand/libsa/gzipfs.c
==============================================================================
--- head/stand/libsa/gzipfs.c Tue Aug 7 10:48:36 2018 (r337412)
+++ head/stand/libsa/gzipfs.c Tue Aug 7 10:53:51 2018 (r337413)
@@ -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;
};
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"