diff options
author | Tom Lane | 2000-07-04 06:20:14 +0000 |
---|---|---|
committer | Tom Lane | 2000-07-04 06:20:14 +0000 |
commit | 6d87107b0e87aa5b39772c8bbdab4c79c0ed9c97 (patch) | |
tree | b7110c38844c6593ade27fc98dd08d680cc4cf0b /contrib/fulltextindex | |
parent | cdeca5f590cc3c336c9c217831d68a2ca7f15265 (diff) |
Result of strcmp() is a signed int. Per bug report
from Paul McGarry.
Diffstat (limited to 'contrib/fulltextindex')
-rw-r--r-- | contrib/fulltextindex/fti.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fulltextindex/fti.c b/contrib/fulltextindex/fti.c index aa5f066897..be4522321d 100644 --- a/contrib/fulltextindex/fti.c +++ b/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); |