diff --git a/modules/libutil/src/stopwatch.cpp b/modules/libutil/src/stopwatch.cpp index e7b123a17f4..0934f0419c1 100644 --- a/modules/libutil/src/stopwatch.cpp +++ b/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 }