mirror of
https://github.com/postgres/postgres.git
synced 2026-04-21 06:08:26 -04:00
Result of strcmp() is a signed int. Per bug report
from Paul McGarry.
This commit is contained in:
parent
cdeca5f590
commit
6d87107b0e
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue