From 075db3a84d7b1e883c3f7c08c5d5c29bc4e3942a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Sat, 5 Aug 2000 13:09:59 +0200
Subject: [PATCH] Bugfix.

Rev: src/modules/Parser/html.c:1.98
---
 src/modules/Parser/html.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/modules/Parser/html.c b/src/modules/Parser/html.c
index 4cd9c0943e..b0f3b96199 100644
--- a/src/modules/Parser/html.c
+++ b/src/modules/Parser/html.c
@@ -2080,8 +2080,8 @@ struct chr_buf_len2
 };
 
 static int quote_tag_lookup (struct parser_html_storage *this,
-			     struct piece *feed, int c,
-			     struct piece **destp, int *d_p,
+			     struct piece *feed, ptrdiff_t c,
+			     struct piece **destp, ptrdiff_t *d_p,
 			     int finished, struct svalue **mapqentry)
 /* Checks for a quote tag starting at the given position. If one is
  * found, scans to the end of it and sets *mapqentry to the first
@@ -2089,7 +2089,7 @@ static int quote_tag_lookup (struct parser_html_storage *this,
 {
   struct chr_buf_len2 buf;
   struct piece *dst = feed;
-  int cdst = c;
+  ptrdiff_t cdst = c;
   size_t checklen;
   *mapqentry = NULL;
 
-- 
GitLab