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:
parent
9deabc5e46
commit
f9a6274fd3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=332140
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue