# HG changeset patch # User Florian Pose # Date 1280585689 -7200 # Node ID 09c2bd224d3feaf3ab55fc927470a2ad269f612d # Parent a108f0805a0bb3fd0c5609316ceda52f3dac526a Dropped '0x' before process data bytes to fit on an 80 col console. diff -r a108f0805a0b -r 09c2bd224d3f tool/CommandDomains.cpp --- a/tool/CommandDomains.cpp Sat Jul 31 16:13:24 2010 +0200 +++ b/tool/CommandDomains.cpp Sat Jul 31 16:14:49 2010 +0200 @@ -71,7 +71,7 @@ << 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 @@ 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;