diff options
Diffstat (limited to 'src/net/messageout.cpp')
-rw-r--r-- | src/net/messageout.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/messageout.cpp b/src/net/messageout.cpp index e2476813d..d13e0969e 100644 --- a/src/net/messageout.cpp +++ b/src/net/messageout.cpp @@ -66,7 +66,7 @@ void MessageOut::writeString(const std::string &string, if (length < 0) { // Write the length at the start if not fixed - writeInt16(static_cast<int16_t>(stringLength)); + writeInt16(static_cast<int16_t>(stringLength), "len"); length = stringLength; } else if (length < stringLength) @@ -100,7 +100,7 @@ void MessageOut::writeStringNoLog(const std::string &string, if (length < 0) { // Write the length at the start if not fixed - writeInt16(static_cast<int16_t>(stringLength)); + writeInt16(static_cast<int16_t>(stringLength), "len"); length = stringLength; } else if (length < stringLength) |