From b6afa84a2081cd745f3f278e122bfebc11944def Mon Sep 17 00:00:00 2001 From: rpotts Date: Tue, 2 Jun 1998 00:03:49 +0000 Subject: [PATCH] fixed typo in progress notification... --- webshell/tests/viewer/nsViewer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webshell/tests/viewer/nsViewer.cpp b/webshell/tests/viewer/nsViewer.cpp index 65f512e42cd0..15c9e095a3f2 100644 --- a/webshell/tests/viewer/nsViewer.cpp +++ b/webshell/tests/viewer/nsViewer.cpp @@ -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; }