From: Mike Frysinger Date: Sat, 26 May 2012 12:05:56 +0000 (+0200) Subject: warc: use the right type for the gzip stream X-Git-Tag: v1.14~23 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=639a4545287b79baa8783c90c38a572b406714c7 warc: use the right type for the gzip stream --- diff --git a/src/ChangeLog b/src/ChangeLog index 8b96c628..d7a13ac0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2012-05-26 Mike Frysinger + + * warc.c: Change type of `warc_current_gzfile' to gzFile. + 2012-05-26 Giuseppe Scrivano * warc.c (warc_load_cdx_dedup_file): Change type of `line_length' to diff --git a/src/warc.c b/src/warc.c index 6935aaf1..24751dbf 100644 --- a/src/warc.c +++ b/src/warc.c @@ -75,7 +75,7 @@ static FILE *warc_current_file; #ifdef HAVE_LIBZ /* The gzip stream for the current WARC file (or NULL, if WARC or gzip is disabled). */ -static gzFile *warc_current_gzfile; +static gzFile warc_current_gzfile; /* The offset of the current gzip record in the WARC file. */ static off_t warc_current_gzfile_offset;