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
parent aa7e2ebe29
commit 7ff08561e2

View File

@ -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;
}