mirror of
https://github.com/postgres/postgres.git
synced 2025-04-22 23:02:54 +03: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…
x
Reference in New Issue
Block a user