aboutsummaryrefslogtreecommitdiff
path: root/sysutils/deltup
diff options
context:
space:
mode:
authorRoman Bogorodskiy <novel@FreeBSD.org>2013-10-30 16:04:00 +0000
committerRoman Bogorodskiy <novel@FreeBSD.org>2013-10-30 16:04:00 +0000
commitf9a6274fd35d595932c7c4c1267007c5770e0fa3 (patch)
treed32a3968d795303c2d284d7868c3e18e91be4f96 /sysutils/deltup
parent9deabc5e46d501737514839ee6734f033649fac8 (diff)
downloadports-f9a6274fd35d595932c7c4c1267007c5770e0fa3.tar.gz
ports-f9a6274fd35d595932c7c4c1267007c5770e0fa3.zip
Continue attempts to fix compilation on all supported flavors.
Replace gzFile_s with gzFile which appears to be more portable. Reported by: pkg-fallout
Notes
Notes: svn path=/head/; revision=332140
Diffstat (limited to 'sysutils/deltup')
-rw-r--r--sysutils/deltup/files/patch-file.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/deltup/files/patch-file.h b/sysutils/deltup/files/patch-file.h
index 22609f45a0f1..e68afcb3ce0f 100644
--- a/sysutils/deltup/files/patch-file.h
+++ b/sysutils/deltup/files/patch-file.h
@@ -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();