提交 6d87107b 编写于 作者: T Tom Lane

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

from Paul McGarry.
上级 cdeca5f5
......@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册