Bug 562479 - comparison between signed and unsigned integer expressions in nsCSSFrameConstructor::ContentRangeInserted, r=dbaron

This commit is contained in:
timeless@mozdev.org 2010-04-29 22:48:00 -07:00
Родитель 2f5d8a90a7
Коммит d87f981eb5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -6856,7 +6856,7 @@ nsCSSFrameConstructor::ContentRangeInserted(nsIContent* aContainer,
NS_ASSERTION(isSingleInsert || !aAllowLazyConstruction,
"range insert shouldn't be lazy");
NS_ASSERTION(isSingleInsert || !aContainer ||
aEndIndexInContainer < aContainer->GetChildCount(),
PRUint32(aEndIndexInContainer) < aContainer->GetChildCount(),
"end index should not include all nodes");
#ifdef MOZ_XUL