about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/HTTP.c
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2008-07-07 00:04:46 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2008-07-07 00:04:46 -0400
commit0a919c29d330d4dad298bdde3961b37d79586a57 (patch)
treeb26c4bc837c9c9b9c7606d3a8178427f3d109f15 /WWW/Library/Implementation/HTTP.c
parent6a2f66bad9065f97b8ec18d165fb5139386c0062 (diff)
downloadlynx-snapshots-0a919c29d330d4dad298bdde3961b37d79586a57.tar.gz
snapshot of project "lynx", label v2-8-7dev_9c
Diffstat (limited to 'WWW/Library/Implementation/HTTP.c')
-rw-r--r--WWW/Library/Implementation/HTTP.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/WWW/Library/Implementation/HTTP.c b/WWW/Library/Implementation/HTTP.c
index 8fb37a13..6f016442 100644
--- a/WWW/Library/Implementation/HTTP.c
+++ b/WWW/Library/Implementation/HTTP.c
@@ -1,5 +1,5 @@
 /*
- * $LynxId: HTTP.c,v 1.94 2008/04/27 17:05:55 tom Exp $
+ * $LynxId: HTTP.c,v 1.96 2008/07/06 12:55:40 tom Exp $
  *
  * HyperText Tranfer Protocol	- Client implementation		HTTP.c
  * ==========================
@@ -1034,13 +1034,13 @@ static int HTLoadHTTP(const char *arg,
 	    if (pres->get_accept) {
 		if (pres->quality < 1.0) {
 		    if (pres->maxbytes > 0) {
-			sprintf(temp, ";q=%4.3f;mxb=%ld",
+			sprintf(temp, ";q=%4.3f;mxb=%" PRI_off_t "",
 				pres->quality, pres->maxbytes);
 		    } else {
 			sprintf(temp, ";q=%4.3f", pres->quality);
 		    }
 		} else if (pres->maxbytes > 0) {
-		    sprintf(temp, ";mxb=%ld", pres->maxbytes);
+		    sprintf(temp, ";mxb=%" PRI_off_t "", pres->maxbytes);
 		} else {
 		    temp[0] = '\0';
 		}