summaryrefslogtreecommitdiff
path: root/src/net/messageout.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/messageout.cpp')
-rw-r--r--src/net/messageout.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/messageout.cpp b/src/net/messageout.cpp
index 7ee08b0d4..3241ffbfd 100644
--- a/src/net/messageout.cpp
+++ b/src/net/messageout.cpp
@@ -53,7 +53,8 @@ void MessageOut::writeInt8(const int8_t value, const char *const str)
{
expand(1);
mData[mPos] = value;
- DEBUGLOG2("writeInt8: " + toStringPrint(static_cast<int>(value)),
+ DEBUGLOG2("writeInt8: " + toStringPrint(static_cast<unsigned int>(
+ static_cast<uint8_t>(value))),
mPos, str);
mPos += 1;
PacketCounters::incOutBytes(1);