Object print bug fix
This commit is contained in:
parent
2af2e590e1
commit
353a69eae7
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue