зеркало из https://github.com/mozilla/pjs.git
Fix simple signed/unsigned comparison warning.
This commit is contained in:
Родитель
55d26ad38c
Коммит
b9abf52244
|
@ -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"))
|
||||
|
|
Загрузка…
Ссылка в новой задаче