| Index: src/heap/gc-tracer.cc
|
| diff --git a/src/heap/gc-tracer.cc b/src/heap/gc-tracer.cc
|
| index aa98c9acab833f2f62ffa7377f2f7301b259570e..b034750862a4c5d3e35dda13b887c1ead1328e7a 100644
|
| --- a/src/heap/gc-tracer.cc
|
| +++ b/src/heap/gc-tracer.cc
|
| @@ -358,7 +358,7 @@ void GCTracer::Print() const {
|
| static_cast<double>(current_.end_memory_size) / MB);
|
|
|
| int external_time = static_cast<int>(current_.scopes[Scope::EXTERNAL]);
|
| - if (external_time > 0) PrintF("%d / ", external_time);
|
| + if (external_time > 0) Output("%d / ", external_time);
|
|
|
| double duration = current_.end_time - current_.start_time;
|
| Output("%.1f ms", duration);
|
|
|