aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Packets
diff options
context:
space:
mode:
authorSpp <spp@jorge.gr>2013-01-14 11:12:58 +0100
committerSpp <spp@jorge.gr>2013-01-14 11:12:58 +0100
commit0d5cb6af755199f716a2de3207e6df91787f98b5 (patch)
treeba41d4bd98872ef4137a7f57b60f5413da2d6d9f /src/server/shared/Packets
parentd75222feca1b0ffc5f9b10df1fd442eedab95a16 (diff)
Core/Misc: Apply codestyle to multiple files (II)
Diffstat (limited to 'src/server/shared/Packets')
-rw-r--r--src/server/shared/Packets/ByteBuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/shared/Packets/ByteBuffer.h b/src/server/shared/Packets/ByteBuffer.h
index 4b840e24953..68d86406faa 100644
--- a/src/server/shared/Packets/ByteBuffer.h
+++ b/src/server/shared/Packets/ByteBuffer.h
@@ -54,7 +54,7 @@ class ByteBufferPositionException : public ByteBufferException
{
ACE_Stack_Trace trace;
- sLog->outError(LOG_FILTER_NETWORKIO, "Attempted to %s value with size: " SIZEFMTD " in ByteBuffer (pos: " SIZEFMTD " size: "SIZEFMTD")\n[Stack trace: %s]" ,
+ sLog->outError(LOG_FILTER_NETWORKIO, "Attempted to %s value with size: " SIZEFMTD " in ByteBuffer (pos: " SIZEFMTD " size: "SIZEFMTD")\n[Stack trace: %s]",
(_add ? "put" : "get"), ValueSize, Pos, Size, trace.c_str());
}