mem: Fix input to DPRINTF in CommMonitor
authorAndreas Hansson <andreas.hansson@arm.com>
Tue, 18 Feb 2014 10:50:51 +0000 (05:50 -0500)
committerAndreas Hansson <andreas.hansson@arm.com>
Tue, 18 Feb 2014 10:50:51 +0000 (05:50 -0500)
Minor fix of the debug message parameters.

src/mem/comm_monitor.cc

index 5db6f5e9a04d573ba472b04b7bd9d8349200413f..655265c37d18b389e1affc4435b452a5acd50e16 100644 (file)
@@ -83,8 +83,8 @@ CommMonitor::CommMonitor(Params* params)
     samplePeriod.setTick(params->sample_period);
 
     DPRINTF(CommMonitor,
-            "Created monitor %s with sample period %d ticks (%f s)\n",
-            name(), samplePeriodTicks, samplePeriod);
+            "Created monitor %s with sample period %d ticks (%f ms)\n",
+            name(), samplePeriodTicks, samplePeriod.msec());
 }
 
 void