diff options
author | smatz <smatz@openttd.org> | 2009-10-04 17:10:57 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-10-04 17:10:57 +0000 |
commit | 32cbe57178129d371752e29e857fa454a046f7c3 (patch) | |
tree | c1dd06f2f7e052ee5bbbe6e388d6546da67648a3 /src/network | |
parent | 1666f7a1a926eec76a5ae12d54debf4f13bca269 (diff) | |
download | openttd-32cbe57178129d371752e29e857fa454a046f7c3.tar.xz |
(svn r17692) -Codechange: minor coding style fixes
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/core/tcp_content.cpp | 3 |
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; \ |