| Index: runtime/vm/heap_test.cc
|
| diff --git a/runtime/vm/heap_test.cc b/runtime/vm/heap_test.cc
|
| index 47a25c742312abe4649efa31f1ecaaef8e7d2462..b6be1f3ab53a743235b046dd014ea2c508345527 100644
|
| --- a/runtime/vm/heap_test.cc
|
| +++ b/runtime/vm/heap_test.cc
|
| @@ -59,10 +59,10 @@ class ClassHeapStatsTestHelper {
|
| }
|
|
|
| static void DumpClassHeapStats(ClassHeapStats* stats) {
|
| - printf("%" Pd " ", stats->recent.new_count);
|
| - printf("%" Pd " ", stats->post_gc.new_count);
|
| - printf("%" Pd " ", stats->pre_gc.new_count);
|
| - printf("\n");
|
| + OS::Print("%" Pd " ", stats->recent.new_count);
|
| + OS::Print("%" Pd " ", stats->post_gc.new_count);
|
| + OS::Print("%" Pd " ", stats->pre_gc.new_count);
|
| + OS::Print("\n");
|
| }
|
| };
|
|
|
|
|