diff options
-rw-r--r-- | runtime/gc/heap.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/heap.cc b/runtime/gc/heap.cc index ad3e690938..8f3189f6e5 100644 --- a/runtime/gc/heap.cc +++ b/runtime/gc/heap.cc @@ -3709,7 +3709,7 @@ collector::GcType Heap::WaitForGcToCompleteLocked(GcCause cause, Thread* self, b void Heap::DumpForSigQuit(std::ostream& os) { os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetBytesAllocated()) << "/" - << PrettySize(GetTotalMemory()); + << PrettySize(GetTotalMemory()) << "\n"; { os << "Image spaces:\n"; ScopedObjectAccess soa(Thread::Current()); |