diff --git a/src/shared/ByteBuffer.h b/src/shared/ByteBuffer.h index 645897677..5a13ea788 100644 --- a/src/shared/ByteBuffer.h +++ b/src/shared/ByteBuffer.h @@ -370,7 +370,7 @@ class ByteBuffer { if ((i == (j*8)) && ((i != (k*16)))) { - if (read(i) < 0x0F) + if (read(i) < 0x10) { sLog.outDebugInLine("| 0%X ", read(i) ); } @@ -382,7 +382,7 @@ class ByteBuffer } else if (i == (k*16)) { - if (read(i) < 0x0F) + if (read(i) < 0x10) { sLog.outDebugInLine("\n"); if(sLog.IsIncludeTime()) @@ -404,7 +404,7 @@ class ByteBuffer } else { - if (read(i) < 0x0F) + if (read(i) < 0x10) { sLog.outDebugInLine("0%X ", read(i) ); } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index cdd6a99b8..d764790aa 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 "7924" + #define REVISION_NR "7925" #endif // __REVISION_NR_H__