diff --git a/src/shared/ByteBuffer.h b/src/shared/ByteBuffer.h index 9e0ff7a58..1919a862c 100644 --- a/src/shared/ByteBuffer.h +++ b/src/shared/ByteBuffer.h @@ -446,48 +446,23 @@ class ByteBuffer { if ((i == (j * 8)) && ((i != (k * 16)))) { - if (read(i) < 0x10) - { - sLog.outDebugInLine("| 0%X ", read(i) ); - } - else - { - sLog.outDebugInLine("| %X ", read(i) ); - } + sLog.outDebugInLine("| %02X ", read(i)); ++j; } else if (i == (k * 16)) { - if (read(i) < 0x10) - { - sLog.outDebugInLine("\n"); - if(sLog.IsIncludeTime()) - sLog.outDebugInLine(" "); + sLog.outDebugInLine("\n"); + if(sLog.IsIncludeTime()) + sLog.outDebugInLine(" "); - sLog.outDebugInLine("0%X ", read(i) ); - } - else - { - sLog.outDebugInLine("\n"); - if(sLog.IsIncludeTime()) - sLog.outDebugInLine(" "); - - sLog.outDebugInLine("%X ", read(i) ); - } + sLog.outDebugInLine("%02X ", read(i)); ++k; ++j; } else { - if (read(i) < 0x10) - { - sLog.outDebugInLine("0%X ", read(i) ); - } - else - { - sLog.outDebugInLine("%X ", read(i) ); - } + sLog.outDebugInLine("%02X ", read(i)); } } sLog.outDebugInLine("\n"); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 5c371c600..b9711fb25 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "10612" + #define REVISION_NR "10613" #endif // __REVISION_NR_H__