From 3bde38679af4bab33047c4a64075880973079c77 Mon Sep 17 00:00:00 2001 From: Naicisum Date: Sun, 31 May 2009 09:32:44 +0400 Subject: [PATCH] [7925] Correct minor output format error inside ByteBuffer class Signed-off-by: VladimirMangos --- src/shared/ByteBuffer.h | 6 +++--- src/shared/revision_nr.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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__ -- 2.11.4.GIT