From: Tom Lane Date: Tue, 4 Jul 2000 06:20:14 +0000 (+0000) Subject: Result of strcmp() is a signed int. Per bug report X-Git-Tag: REL7_1_BETA~1008 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d87107b0e87aa5b39772c8bbdab4c79c0ed9c97;p=postgresql Result of strcmp() is a signed int. Per bug report from Paul McGarry. --- diff --git a/contrib/fulltextindex/fti.c b/contrib/fulltextindex/fti.c index aa5f066897..be4522321d 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);