Skip to content
Snippets Groups Projects
Commit 7548b62f authored by Florian Pose's avatar Florian Pose
Browse files

Dropped '0x' before process data bytes to fit on an 80 col console.

parent 77a8a745
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ string CommandDomains::helpString() const
<< endl
<< " SlaveConfig 1001:0, SM3 ( Input), LogAddr 0x00000006, Size 6"
<< endl
<< " 0x00 0x00 0x00 0x00 0x00 0x00" << endl
<< " 00 00 00 00 00 00" << endl
<< endl
<< "The process data are displayed as hexadecimal bytes." << endl
<< endl
......@@ -185,7 +185,7 @@ void CommandDomains::showDomain(
for (j = 0; j < fmmu.data_size; j++) {
if (j && !(j % BreakAfterBytes))
cout << endl << indent << " ";
cout << "0x" << setw(2)
cout << setw(2)
<< (unsigned int) *(processData + dataOffset + j) << " ";
}
cout << endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment