Result of strcmp() is a signed int. Per bug report

from Paul McGarry.
This commit is contained in:
Tom Lane 2000-07-04 06:20:14 +00:00
parent cdeca5f590
commit 6d87107b0e

View File

@ -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);