diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-07-04 06:20:14 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-07-04 06:20:14 +0000 |
commit | 6d87107b0e87aa5b39772c8bbdab4c79c0ed9c97 (patch) | |
tree | b7110c38844c6593ade27fc98dd08d680cc4cf0b | |
parent | cdeca5f590cc3c336c9c217831d68a2ca7f15265 (diff) | |
download | postgresql-6d87107b0e87aa5b39772c8bbdab4c79c0ed9c97.tar.gz postgresql-6d87107b0e87aa5b39772c8bbdab4c79c0ed9c97.zip |
Result of strcmp() is a signed int. Per bug report
from Paul McGarry.
-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 aa5f066897c..be4522321d7 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); |