svn commit: r337413 - head/stand/libsa

Toomas Soome tsoome at FreeBSD.org
Tue Aug 7 10:53:52 UTC 2018


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


More information about the svn-src-all mailing list