From 4e5d797c29b53bcc7a3c9519d50eab290a4018dd Mon Sep 17 00:00:00 2001 From: "attinasi%netscape.com" Date: Fri, 18 Feb 2000 20:57:16 +0000 Subject: [PATCH] Typo in printf fixed. r=dcone git-svn-id: svn://10.0.0.236/trunk@61314 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/modules/libutil/src/stopwatch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/modules/libutil/src/stopwatch.cpp b/mozilla/modules/libutil/src/stopwatch.cpp index e7b123a17f4..0934f0419c1 100644 --- a/mozilla/modules/libutil/src/stopwatch.cpp +++ b/mozilla/modules/libutil/src/stopwatch.cpp @@ -263,7 +263,7 @@ void Stopwatch::Print(void) { #ifdef MOZ_PERF_METRICS RAPTOR_STOPWATCH_TRACE(("Real time %d:%d:%d.%d, CP time %.3f\n", hours, min, sec, ms, CpuTime())); #else - printf("Real time %d:%d:%d%.%d, CP time %.3f\n", hours, min, sec, ms, CpuTime()); + printf("Real time %d:%d:%d.%d, CP time %.3f\n", hours, min, sec, ms, CpuTime()); #endif }