Bug 615838 comparison between signed and unsigned integer expressions in nsMediaCache::FlushInternal. r=roc a=roc

This commit is contained in:
timeless@mozdev.org 2010-12-03 14:08:49 +13:00
Родитель 67eed32517
Коммит cd9ebf39ef
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -619,7 +619,7 @@ nsMediaCache::FlushInternal()
{
nsAutoMonitor mon(mMonitor);
for (PRInt32 blockIndex = 0; blockIndex < mIndex.Length(); ++blockIndex) {
for (PRUint32 blockIndex = 0; blockIndex < mIndex.Length(); ++blockIndex) {
FreeBlock(blockIndex);
}