Continue attempts to fix compilation on all supported flavors.

Replace gzFile_s with gzFile which appears to be more portable.

Reported by:	pkg-fallout
This commit is contained in:
Roman Bogorodskiy 2013-10-30 16:04:00 +00:00
parent 9deabc5e46
commit f9a6274fd3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=332140

View file

@ -14,7 +14,7 @@
class GZ_IFStream : public IStream {
- void *file;
+ gzFile_s *file;
+ gzFile file;
public:
GZ_IFStream(string fname);
virtual ~GZ_IFStream();
@ -23,7 +23,7 @@
class GZ_OFStream : public OStream {
- void *file;
+ gzFile_s *file;
+ gzFile file;
public:
GZ_OFStream(string fname);
virtual ~GZ_OFStream();