From: Wolfgang Bumiller Date: Tue, 7 Feb 2017 14:46:05 +0000 (+0100) Subject: genfont: gzFile is already the opaque pointer X-Git-Url: https://git.proxmox.com/?p=vncterm.git;a=commitdiff_plain;h=3188947176ff2135c4347711335c00167829c351 genfont: gzFile is already the opaque pointer --- diff --git a/genfont.c b/genfont.c index 508819c..4fc2b4a 100644 --- a/genfont.c +++ b/genfont.c @@ -84,7 +84,7 @@ load_psf_font (const char *filename, int is_default) { struct psf_header psfhdr; - gzFile *f = gzopen (filename, "rb"); + gzFile f = gzopen(filename, "rb"); if (f == NULL) { fprintf (stderr, "unable to read file %s\n", filename); exit(-1);