mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-24 18:55:04 +08:00
Result of strcmp() is a signed int. Per bug report
from Paul McGarry.
This commit is contained in:
parent
cdeca5f590
commit
6d87107b0e
@ -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 New Issue
Block a user