aboutsummaryrefslogtreecommitdiff
path: root/src/logger.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/logger.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/logger.cpp b/src/logger.cpp
index 9bd2fa5..af529f5 100644
--- a/src/logger.cpp
+++ b/src/logger.cpp
@@ -159,14 +159,14 @@ void Bu::Logger::hexDump( uint32_t nLevel, const char *sFile,
159 const unsigned char *pData = (const unsigned char *)pDataV; 159 const unsigned char *pData = (const unsigned char *)pDataV;
160 int j = 0; 160 int j = 0;
161 Bu::FString sBorder; 161 Bu::FString sBorder;
162 for( int l = 0; l < 8*3+2*8+2; l++ ) sBorder += ((l!=8*3)?("-"):("+")); 162 for( int l = 0; l < 8*3+2*8+2+5; l++ ) sBorder += ((l!=11&&l!=37)?("-"):("+"));
163 log( nLevel, sFile, sFunction, nLine, sBorder.getStr() ); 163 log( nLevel, sFile, sFunction, nLine, sBorder.getStr() );
164 Bu::FString sLine; 164 Bu::FString sLine;
165 for(;;) 165 for(;;)
166 { 166 {
167 { 167 {
168 char buf[15]; 168 char buf[16];
169 sprintf( buf, "%010d| ", j ); 169 sprintf( buf, "%010d | ", j );
170 sLine += buf; 170 sLine += buf;
171 } 171 }
172 int kmax = 8; 172 int kmax = 8;