зеркало из https://github.com/mozilla/pjs.git
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:
Родитель
c1de62fa0d
Коммит
002fe615e2
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче