diff options
Diffstat (limited to 'src/net/messagein.cpp')
-rw-r--r-- | src/net/messagein.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/messagein.cpp b/src/net/messagein.cpp index a833c6cde..4ea6c7415 100644 --- a/src/net/messagein.cpp +++ b/src/net/messagein.cpp @@ -247,7 +247,7 @@ unsigned char *MessageIn::readBytes(int length) unsigned char *const buf = new unsigned char[length + 2]; - memcpy (buf, mData + mPos, length); + memcpy(buf, mData + mPos, length); buf[length] = 0; buf[length + 1] = 0; mPos += length; @@ -271,4 +271,4 @@ unsigned char *MessageIn::readBytes(int length) return buf; } -} +} // namespace Net |