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

from Paul McGarry.
REL7_1_STABLE
Tom Lane 26 years ago
parent cdeca5f590
commit 6d87107b0e
  1. 2
      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);

Loading…
Cancel
Save