Bug 588640 - comparison between signed and unsigned integer expressions in nsAttrValue::AtomAt; r=Olli.Pettay approval2.0=jst

This commit is contained in:
Ms2ger 2010-08-25 15:15:12 +02:00
Родитель 4751e14e59
Коммит eb2d355feb
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -525,7 +525,7 @@ nsIAtom*
nsAttrValue::AtomAt(PRInt32 aIndex) const
{
NS_PRECONDITION(aIndex >= 0, "Index must not be negative");
NS_PRECONDITION(GetAtomCount() > aIndex, "aIndex out of range");
NS_PRECONDITION(GetAtomCount() > PRUint32(aIndex), "aIndex out of range");
if (BaseType() == eAtomBase) {
return GetAtomValue();