Index: src/spaces.cc |
diff --git a/src/spaces.cc b/src/spaces.cc |
index 80cb4da630a8a7a90006c794d63619a7189c7da9..560c7d87188e052ec5941f56cceb8a78cee7d7b9 100644 |
--- a/src/spaces.cc |
+++ b/src/spaces.cc |
@@ -3083,9 +3083,10 @@ void LargeObjectSpace::Verify() { |
#ifdef DEBUG |
void LargeObjectSpace::Print() { |
+ OFStream os(stdout); |
LargeObjectIterator it(this); |
for (HeapObject* obj = it.Next(); obj != NULL; obj = it.Next()) { |
- obj->Print(); |
+ obj->Print(os); |
} |
} |