Fix simple signed/unsigned comparison warning.

This commit is contained in:
rjc%netscape.com 2000-03-26 06:38:46 +00:00
Родитель 55d26ad38c
Коммит b9abf52244
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -454,7 +454,7 @@ LocalSearchDataSource::doMatch(nsIRDFLiteral *literal, char *matchMethod, char *
else if (!PL_strcmp(matchMethod, "endswith"))
{
PRInt32 pos = value.RFind(matchText, PR_TRUE);
if ((pos >= 0) && (pos == (value.Length() - PRInt32(strlen(matchText)))))
if ((pos >= 0) && (pos == (PRInt32(value.Length()) - PRInt32(strlen(matchText)))))
found = PR_TRUE;
}
else if (!PL_strcmp(matchMethod, "is"))