fixed typo in progress notification...

This commit is contained in:
rpotts 1998-06-02 00:03:49 +00:00
parent 7df3c4c57c
commit b6afa84a20

View File

@ -222,7 +222,7 @@ DocObserver::OnProgress(PRInt32 aProgress, PRInt32 aProgressMax,
{
fputs("[progress ", stdout);
fputs(mURL, stdout);
printf(" %d %d %s]\n", aProgressMax, aProgressMax,
printf(" %d %d %s]\n", aProgress, aProgressMax,
aMsg ? aMsg : "");
return NS_OK;
}