summaryrefslogtreecommitdiff
path: root/src/network
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-10-04 17:10:57 +0000
committersmatz <smatz@openttd.org>2009-10-04 17:10:57 +0000
commit32cbe57178129d371752e29e857fa454a046f7c3 (patch)
treec1dd06f2f7e052ee5bbbe6e388d6546da67648a3 /src/network
parent1666f7a1a926eec76a5ae12d54debf4f13bca269 (diff)
downloadopenttd-32cbe57178129d371752e29e857fa454a046f7c3.tar.xz
(svn r17692) -Codechange: minor coding style fixes
Diffstat (limited to 'src/network')
-rw-r--r--src/network/core/tcp_content.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/network/core/tcp_content.cpp b/src/network/core/tcp_content.cpp
index b46b1bbbe..a56f31d8d 100644
--- a/src/network/core/tcp_content.cpp
+++ b/src/network/core/tcp_content.cpp
@@ -121,7 +121,8 @@ void NetworkContentSocketHandler::Recv_Packets()
* @param type the packet type to create the stub for
*/
#define DEFINE_UNAVAILABLE_CONTENT_RECEIVE_COMMAND(type) \
-bool NetworkContentSocketHandler::NetworkPacketReceive_## type ##_command(Packet *p) { \
+bool NetworkContentSocketHandler::NetworkPacketReceive_## type ##_command(Packet *p) \
+{ \
DEBUG(net, 0, "[tcp/content] received illegal packet type %d from %s", \
type, this->client_addr.GetAddressAsString()); \
return false; \