diff options
author | rubidium <rubidium@openttd.org> | 2009-08-20 10:23:39 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-08-20 10:23:39 +0000 |
commit | 7fb95e2c2b2f84ecf9b5d5d2f02b147d1ad7cb3d (patch) | |
tree | feb24d4a4f522305f7df61aaf26c499eb38c6b6c /src/debug.cpp | |
parent | 0188ebad5649d4c698245a2fef9039e6155b5f22 (diff) | |
download | openttd-7fb95e2c2b2f84ecf9b5d5d2f02b147d1ad7cb3d.tar.xz |
(svn r17228) -Codechange: some coding style fixes
Diffstat (limited to 'src/debug.cpp')
-rw-r--r-- | src/debug.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/debug.cpp b/src/debug.cpp index 5cb4572c4..b1d7e6677 100644 --- a/src/debug.cpp +++ b/src/debug.cpp @@ -69,7 +69,8 @@ static void debug_print(const char *dbg, const char *buf) snprintf(buf2, lengthof(buf2), "dbg: [%s] %s\n", dbg, buf); send(_debug_socket, buf2, (int)strlen(buf2), 0); - } else + return; + } #endif /* ENABLE_NETWORK */ if (strcmp(dbg, "desync") != 0) { #if defined(WINCE) |