diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-06-27 19:45:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-06-27 19:45:57 +0300 |
commit | 76312eefd875932345628d11038dac75550d5efc (patch) | |
tree | bce61a6903993d5ebc2c9bafa543c002d91ab031 | |
parent | 26f817319be3f0c21785cbf079ae2758a362bd63 (diff) | |
download | mv-76312eefd875932345628d11038dac75550d5efc.tar.gz mv-76312eefd875932345628d11038dac75550d5efc.tar.bz2 mv-76312eefd875932345628d11038dac75550d5efc.tar.xz mv-76312eefd875932345628d11038dac75550d5efc.zip |
Add missing space in debuging packet messages.
-rw-r--r-- | src/net/tmwa/messagein.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tmwa/messagein.cpp b/src/net/tmwa/messagein.cpp index 67cacf504..a9a2ce5a5 100644 --- a/src/net/tmwa/messagein.cpp +++ b/src/net/tmwa/messagein.cpp @@ -77,7 +77,7 @@ int32_t MessageIn::readInt32() } mPos += 4; PacketCounters::incInBytes(4); - DEBUGLOG("readInt32:" + toStringPrint(value)); + DEBUGLOG("readInt32: " + toStringPrint(value)); return value; } |