diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2017-04-30 18:45:06 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2017-04-30 18:45:06 +0000 |
commit | 79de0ed75de47a025bfacb8c491cb5dcb9144c36 (patch) | |
tree | 13c3c0bf8fd3454438809755fa9b7140ae12d623 /src | |
parent | e878db685c213ee53b890b38ec5f2a0c92774a66 (diff) | |
download | lynx-snapshots-79de0ed75de47a025bfacb8c491cb5dcb9144c36.tar.gz |
snapshot of project "lynx", label v2-8-9dev_13a
Diffstat (limited to 'src')
-rw-r--r-- | src/HTFWriter.c | 4 | ||||
-rw-r--r-- | src/HTML.c | 4 | ||||
-rw-r--r-- | src/LYCurses.c | 4 | ||||
-rw-r--r-- | src/LYIcon.rc | 10 |
4 files changed, 11 insertions, 11 deletions
diff --git a/src/HTFWriter.c b/src/HTFWriter.c index 6f04ea0c..5356caa8 100644 --- a/src/HTFWriter.c +++ b/src/HTFWriter.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTFWriter.c,v 1.111 2017/02/11 00:28:32 tom Exp $ + * $LynxId: HTFWriter.c,v 1.112 2017/04/30 17:55:13 tom Exp $ * * FILE WRITER HTFWrite.h * =========== @@ -173,7 +173,7 @@ static void decompress_gzip(HTStream *me) } gzclose(gzfp); LYCloseTempFP(fp); - CTRACE((tfp, "...decompress %ld to %ld\n", + CTRACE((tfp, "...decompress %" PRI_off_t " to %ld\n", me->anchor->actual_length, actual)); if (success) { diff --git a/src/HTML.c b/src/HTML.c index e74d2390..2053e53f 100644 --- a/src/HTML.c +++ b/src/HTML.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTML.c,v 1.168 2016/11/24 18:18:18 tom Exp $ + * $LynxId: HTML.c,v 1.170 2017/04/30 18:45:06 tom Exp $ * * Structured stream to Rich hypertext converter * ============================================ @@ -4717,7 +4717,7 @@ static int HTML_start_element(HTStructured * me, int element_number, } CTRACE((tfp, "2.Ok, we're trying type=[%s] (present=%p)\n", NONNULL(I.type), - present)); + (const void *) present)); /* text+file don't go in here */ if ((UseALTasVALUE == TRUE) || (present && present[HTML_INPUT_VALUE] && diff --git a/src/LYCurses.c b/src/LYCurses.c index 63b73ece..28826a62 100644 --- a/src/LYCurses.c +++ b/src/LYCurses.c @@ -1,4 +1,4 @@ -/* $LynxId: LYCurses.c,v 1.183 2017/03/18 21:42:48 tom Exp $ */ +/* $LynxId: LYCurses.c,v 1.184 2017/04/30 17:52:12 tom Exp $ */ #include <HTUtils.h> #include <HTAlert.h> @@ -572,7 +572,7 @@ void wcurses_css(WINDOW * win, char *name, if (tmpHash == NOSTYLE) { char *pclass = strrchr(name, '.'); - CTRACE2(TRACE_STYLE, (tfp, "undefined, trimming at %p\n", pclass)); + CTRACE2(TRACE_STYLE, (tfp, "undefined, trimming at %p\n", (void *) pclass)); if (pclass) *pclass = '\0'; else diff --git a/src/LYIcon.rc b/src/LYIcon.rc index b3515772..4bcdaf94 100644 --- a/src/LYIcon.rc +++ b/src/LYIcon.rc @@ -1,12 +1,12 @@ -// $LynxId: LYIcon.rc,v 1.28 2017/04/29 12:47:15 tom Exp $ +// $LynxId: LYIcon.rc,v 1.29 2017/04/30 16:02:52 tom Exp $ #include <windows.h> 100 ICON "../samples/lynx.ico" VS_VERSION_INFO VERSIONINFO -FILEVERSION 2,8,9,1013 -PRODUCTVERSION 2,8,9,1013 +FILEVERSION 2,8,9,1014 +PRODUCTVERSION 2,8,9,1014 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK FILEFLAGS 0 FILEOS VOS_NT_WINDOWS32 @@ -19,12 +19,12 @@ BEGIN BEGIN VALUE "CompanyName", "http://invisible-island.net/lynx" VALUE "FileDescription", "Lynx - web browser" - VALUE "FileVersion", "2.8.9.1013" + VALUE "FileVersion", "2.8.9.1014" VALUE "InternalName", "Lynx" VALUE "LegalCopyright", "©1997-2017 Thomas E. Dickey" VALUE "OriginalFilename", "lynx.exe" VALUE "ProductName", "Lynx - web browser" - VALUE "ProductVersion", "2.8.9.1013" + VALUE "ProductVersion", "2.8.9.1014" END END BLOCK "VarFileInfo" |