Bug 630588: use PRInt32 as iterator variable in nsGlobalWindow::FireDelayedDOMEvents to fix build warning. r=jst a=jst

This commit is contained in:
Daniel Holbert 2011-02-04 11:18:15 -08:00
Родитель c47ee14246
Коммит d42945bfd7
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -8414,7 +8414,7 @@ nsGlobalWindow::FireDelayedDOMEvents()
{
FORWARD_TO_INNER(FireDelayedDOMEvents, (), NS_ERROR_UNEXPECTED);
for (PRUint32 i = 0; i < mPendingStorageEvents.Count(); ++i) {
for (PRInt32 i = 0; i < mPendingStorageEvents.Count(); ++i) {
Observe(mPendingStorageEvents[i], "dom-storage2-changed", nsnull);
}