Bug 560393, part 3: (netwerk directory) Fix compile warning: format '%d' expects type 'int', but argument N has type size_t. r=jduell

This commit is contained in:
Daniel Holbert 2010-05-11 12:07:35 -07:00
Родитель c1de62fa0d
Коммит 002fe615e2
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -73,7 +73,7 @@ FetchObserver::OnProgress(nsIRequest *request, nsISupports *context,
PRUint64 progress, PRUint64 progressMax)
{
printf("FetchObserver::OnProgress [%lu/%lu]\n",
PRUint32(progress), PRUint32(progressMax));
(unsigned long)progress, (unsigned long)progressMax);
return NS_OK;
}