diff options
Diffstat (limited to 'src/mem/ruby')
-rw-r--r-- | src/mem/ruby/common/DataBlock.hh | 1 |
1 files changed, 1 insertions, 0 deletions
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; } |