From 353a69eae76f27820a1b0245e06ea6539f80caf2 Mon Sep 17 00:00:00 2001 From: Polina Dudnik Date: Fri, 11 Sep 2009 10:59:08 -0500 Subject: Object print bug fix --- src/mem/ruby/common/DataBlock.hh | 1 + 1 file changed, 1 insertion(+) (limited to 'src/mem/ruby/common') diff --git a/src/mem/ruby/common/DataBlock.hh b/src/mem/ruby/common/DataBlock.hh index ccd73c36b..3c8ef56f4 100644 --- a/src/mem/ruby/common/DataBlock.hh +++ b/src/mem/ruby/common/DataBlock.hh @@ -110,6 +110,7 @@ void DataBlock::print(ostream& out) const out << "[ "; for (int i = 0; i < size; i++) { out << setw(2) << setfill('0') << hex << "0x" << (int)m_data[i] << " "; + out << setfill(' '); } out << dec << "]" << flush; } -- cgit v1.2.3