diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-12 17:07:09 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-12 17:07:09 +0300 |
commit | 566ae30ff94caf6c92fc7d64f021b567933f8a60 (patch) | |
tree | eae43b8899444f99a97fdd00bc5df8a117c316e9 /src/net/messagein.cpp | |
parent | 247418a3ec0b50479c7bac80322202b01527ae61 (diff) | |
download | mv-566ae30ff94caf6c92fc7d64f021b567933f8a60.tar.gz mv-566ae30ff94caf6c92fc7d64f021b567933f8a60.tar.bz2 mv-566ae30ff94caf6c92fc7d64f021b567933f8a60.tar.xz mv-566ae30ff94caf6c92fc7d64f021b567933f8a60.zip |
fix code style.
Diffstat (limited to 'src/net/messagein.cpp')
-rw-r--r-- | src/net/messagein.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/messagein.cpp b/src/net/messagein.cpp index 212ce9d55..2f064a8a0 100644 --- a/src/net/messagein.cpp +++ b/src/net/messagein.cpp @@ -54,9 +54,9 @@ MessageIn::~MessageIn() if (mPos != mLength && mPos != 2) { logger->log("Wrong actual or planned inbound packet size!"); - logger->log(" packet id: %d 0x%x", - static_cast<int>(mId), - static_cast<int>(mId)); + logger->log(" packet id: %u 0x%x", + static_cast<unsigned int>(mId), + static_cast<unsigned int>(mId)); logger->log(" planned size: %u", mLength); logger->log(" read size: %u", mPos); } |