diff options
author | jackpoz <giacomopoz@gmail.com> | 2017-11-11 21:06:32 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-02-06 21:41:51 +0100 |
commit | 388034498f853aaac3eec752a49686e01472f176 (patch) | |
tree | 75c39584849dcd1719c392f8d0d646c0cd7f1ec1 /src/server/shared/Packets/ByteBuffer.cpp | |
parent | 1c2481974177d33f6ebd3679a51b1002654287a6 (diff) |
Core/Misc: Fix static analysis issues
(cherry picked from commit 9b7c73a19df66849ec829fc5a94875aa9593934d)
Diffstat (limited to 'src/server/shared/Packets/ByteBuffer.cpp')
-rw-r--r-- | src/server/shared/Packets/ByteBuffer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/shared/Packets/ByteBuffer.cpp b/src/server/shared/Packets/ByteBuffer.cpp index cd662066265..c8aecb24396 100644 --- a/src/server/shared/Packets/ByteBuffer.cpp +++ b/src/server/shared/Packets/ByteBuffer.cpp @@ -172,7 +172,7 @@ void ByteBuffer::hexlike() const for (uint32 i = 0; i < size(); ++i) { char buf[4]; - snprintf(buf, 4, "%2X ", read<uint8>(i)); + snprintf(buf, 4, "%2X", read<uint8>(i)); if ((i == (j * 8)) && ((i != (k * 16)))) { o << "| "; |