vm: Line up larger memory output.

modern-harvey2
Doug Coleman 2017-09-30 08:47:44 -05:00
parent f0e121051d
commit 2ce052c981
1 changed files with 1 additions and 1 deletions

View File

@ -269,7 +269,7 @@ void dump_memory_range(ostream& out, const char* name, cell name_w,
out << setw(name_w) << left << name << ": ";
out << "[" << (void*)start << " -> " << (void*)end << "] ";
out << setw(10) << right << (end - start) << " bytes" << endl;
out << setw(14) << right << (end - start) << " bytes" << endl;
}
template <typename Generation>