Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Unified Diff: runtime/vm/heap_test.cc

Issue 287933002: Fix Android build warnings (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/freelist_test.cc ('k') | runtime/vm/os_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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");
}
};
« no previous file with comments | « runtime/vm/freelist_test.cc ('k') | runtime/vm/os_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698