~ubuntu-branches/ubuntu/saucy/jzip/saucy

« back to all changes in this revision

Viewing changes to fileio.c

  • Committer: Package Import Robot
  • Author(s): Niko Tyni
  • Date: 2012-03-25 22:42:35 UTC
  • Revision ID: package-import@ubuntu.com-20120325224235-aq5xki4sm298evr3
Tags: 210r20001005d-2
Adapt to zlib gzFile changes. (Closes: #664931)

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
extern int GLOBALVER;
40
40
 
41
41
#ifdef USE_ZLIB
42
 
static gzFile *gfp = NULL;      /* Zcode file pointer */
 
42
static gzFile gfp = NULL;      /* Zcode file pointer */
43
43
#else
44
44
static FILE *gfp = NULL;        /* Zcode file pointer */
45
45
#endif