From 6d87107b0e87aa5b39772c8bbdab4c79c0ed9c97 Mon Sep 17 00:00:00 2001
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Tue, 4 Jul 2000 06:20:14 +0000
Subject: [PATCH] Result of strcmp() is a signed int.  Per bug report from Paul
 McGarry.

---
 contrib/fulltextindex/fti.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/fulltextindex/fti.c b/contrib/fulltextindex/fti.c
index aa5f066897c..be4522321d7 100644
--- a/contrib/fulltextindex/fti.c
+++ b/contrib/fulltextindex/fti.c
@@ -346,7 +346,7 @@ is_stopword(char *text)
 	char	  **StopLow;		/* for list of stop-words */
 	char	  **StopHigh;
 	char	  **StopMiddle;
-	unsigned int difference;
+	int			difference;
 
 	StopLow = &StopWords[0];	/* initialize stuff for binary search */
 	StopHigh = endof(StopWords);
-- 
GitLab