From f87a306ec1ae541a7e183d1468a81ba8bdd04f70 Mon Sep 17 00:00:00 2001 From: "Martin T. H. Sandsmark" Date: Sun, 24 Jul 2016 22:30:39 +0200 Subject: [PATCH] Fix warning about incompatible pointers in synctex parser --- core/synctex/synctex_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/synctex/synctex_parser.c b/core/synctex/synctex_parser.c index 79b239081..52d0f0ca3 100644 --- a/core/synctex/synctex_parser.c +++ b/core/synctex/synctex_parser.c @@ -4144,7 +4144,7 @@ typedef int (*synctex_fprintf_t)(void *, const char * , ...); /* print formatte # define SYNCTEX_BITS_PER_BYTE 8 struct __synctex_updater_t { - void *file; /* the foo.synctex or foo.synctex.gz I/O identifier */ + struct gzFile_s *file; /* the foo.synctex or foo.synctex.gz I/O identifier */ synctex_fprintf_t fprintf; /* either fprintf or gzprintf */ int length; /* the number of chars appended */ struct _flags {