about summary refs log tree commit diff stats
path: root/WWW/Library
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2017-04-27 20:51:05 +0000
committerThomas E. Dickey <dickey@invisible-island.net>2017-04-27 20:51:05 +0000
commit2fdb709f2cc059df60c6b0eba9169ba93715e535 (patch)
tree36fe582df012f64cd3efa7ea57f5394d36b65be2 /WWW/Library
parent6f6f5648a1ccf20e4e8637b2baf0298084666769 (diff)
downloadlynx-snapshots-2fdb709f2cc059df60c6b0eba9169ba93715e535.tar.gz
snapshot of project "lynx", label v2-8-9dev_11o
Diffstat (limited to 'WWW/Library')
-rw-r--r--WWW/Library/Implementation/HTFile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/WWW/Library/Implementation/HTFile.c b/WWW/Library/Implementation/HTFile.c
index 74ab62c1..ffb23324 100644
--- a/WWW/Library/Implementation/HTFile.c
+++ b/WWW/Library/Implementation/HTFile.c
@@ -1,5 +1,5 @@
 /*
- * $LynxId: HTFile.c,v 1.145 2016/11/24 15:29:50 tom Exp $
+ * $LynxId: HTFile.c,v 1.146 2017/04/27 20:51:05 tom Exp $
  *
  *			File Access				HTFile.c
  *			===========
@@ -2503,7 +2503,7 @@ static int decompressAndParse(HTParentAnchor *anchor,
 		    gzfp = gzopen(localname, BIN_R);
 
 		    CTRACE((tfp, "HTLoadFile: gzopen of `%s' gives %p\n",
-			    localname, gzfp));
+			    localname, (void *) gzfp));
 		}
 		internal_decompress = cftGzip;
 	    } else if (isDOWNLOAD(cftDeflate)) {
@@ -2582,7 +2582,7 @@ static int decompressAndParse(HTParentAnchor *anchor,
 			gzfp = gzopen(localname, BIN_R);
 
 			CTRACE((tfp, "HTLoadFile: gzopen of `%s' gives %p\n",
-				localname, gzfp));
+				localname, (void *) gzfp));
 		    }
 		    internal_decompress = cftGzip;
 		}