From aebefbf75928794355de7a8a32a73b3f35b7c8d7 Mon Sep 17 00:00:00 2001 From: "neil%parkwaycc.co.uk" Date: Sat, 20 Dec 2003 18:10:22 +0000 Subject: [PATCH] Bug 90906 Remove unused variables p=gautheri@noos.fr r/sr=roc git-svn-id: svn://10.0.0.236/trunk@150571 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/modules/libutil/src/stopwatch.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mozilla/modules/libutil/src/stopwatch.cpp b/mozilla/modules/libutil/src/stopwatch.cpp index dc9b342c66c..2de09146e54 100644 --- a/mozilla/modules/libutil/src/stopwatch.cpp +++ b/mozilla/modules/libutil/src/stopwatch.cpp @@ -266,12 +266,11 @@ void Stopwatch::Print(void) { realt -= min * 60000; int sec = int(realt/1000); realt -= sec * 1000; - int ms = int(realt); #ifdef MOZ_PERF_METRICS + int ms = int(realt); RAPTOR_STOPWATCH_TRACE(("Real time %d:%d:%d.%d, CP time %.3f\n", hours, min, sec, ms, CpuTime())); #elif defined(DEBUG) + int ms = int(realt); printf("Real time %d:%d:%d.%d, CP time %.3f\n", hours, min, sec, ms, CpuTime()); #endif } - -