diff options
author | Shauren <shauren.trinity@gmail.com> | 2012-09-02 14:22:18 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2012-09-02 14:22:18 +0200 |
commit | c649e2fe6b455d031e0331bb26f158a3081743cb (patch) | |
tree | 72d6db53c0bc5195529903dcc0b00d2d8f31672c /src | |
parent | 13e1e2361170c6e4a1fb5bcddc21b007d8681352 (diff) |
Fixed typo in PutBits
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/shared/Packets/ByteBuffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/shared/Packets/ByteBuffer.h b/src/server/shared/Packets/ByteBuffer.h index 39d3724835c..e4535378a48 100755 --- a/src/server/shared/Packets/ByteBuffer.h +++ b/src/server/shared/Packets/ByteBuffer.h @@ -204,7 +204,7 @@ class ByteBuffer template <typename T> void PutBits(size_t pos, T value, uint32 bitCount) { if (!bitCount) - throw ByteBufferSourceException((pos + bitCount) / 8, , size(), 0); + throw ByteBufferSourceException((pos + bitCount) / 8, size(), 0); if (pos + bitCount > size() * 8) throw ByteBufferPositionException(false, (pos + bitCount) / 8, size(), (bitCount - 1) / 8 + 1); |