about summary refs log tree commit diff stats
path: root/WWW
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2023-10-24 00:12:43 +0000
committerThomas E. Dickey <dickey@invisible-island.net>2023-10-24 00:19:09 +0000
commitb4e239624028cf574c9557486290c0e52f0966e4 (patch)
tree6f3798cf611b726c3af8649d058f9c90b190ede2 /WWW
parent26735ba8400464437273b79b24ac6481240e504b (diff)
downloadlynx-snapshots-b4e239624028cf574c9557486290c0e52f0966e4.tar.gz
snapshot of project "lynx", label v2-9-0dev_12j
Diffstat (limited to 'WWW')
-rw-r--r--WWW/Library/Implementation/HTParse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTParse.c b/WWW/Library/Implementation/HTParse.c
index 65d8f296..bf8ef164 100644
--- a/WWW/Library/Implementation/HTParse.c
+++ b/WWW/Library/Implementation/HTParse.c
@@ -1,5 +1,5 @@
 /*
- * $LynxId: HTParse.c,v 1.100 2023/10/17 23:38:48 tom Exp $
+ * $LynxId: HTParse.c,v 1.101 2023/10/24 00:11:42 tom Exp $
  *
  *		Parse HyperText Document Address		HTParse.c
  *		================================
@@ -798,7 +798,7 @@ char *HTParse(const char *aName,
     need = strlen(result);
     if (need > (size_t) max_uri_size) {
 	CTRACE((tfp, "HTParse too-long address (have %ld vs limit %d)\n",
-		need, max_uri_size));
+		(long) need, max_uri_size));
 	StrAllocCopy(return_value, "");
     } else {
 	StrAllocCopy(return_value, result);