aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils
diff options
context:
space:
mode:
authornovel <novel@FreeBSD.org>2013-10-31 00:04:00 +0800
committernovel <novel@FreeBSD.org>2013-10-31 00:04:00 +0800
commitaa197da152d32c46206d6da9aab55de4b2a7bbe1 (patch)
treed32a3968d795303c2d284d7868c3e18e91be4f96 /sysutils
parent18bc139806a4c131cdf0ebe3191aba800ca924b4 (diff)
downloadfreebsd-ports-gnome-aa197da152d32c46206d6da9aab55de4b2a7bbe1.tar.gz
freebsd-ports-gnome-aa197da152d32c46206d6da9aab55de4b2a7bbe1.tar.zst
freebsd-ports-gnome-aa197da152d32c46206d6da9aab55de4b2a7bbe1.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
Diffstat (limited to 'sysutils')
-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();