diff options
author | rubidium <rubidium@openttd.org> | 2009-10-15 20:15:12 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-10-15 20:15:12 +0000 |
commit | b1561fcb52acd981eadfb3b5572aca1465739b6f (patch) | |
tree | 5f5d9e9a5562173e402413ec7d304e9ccc611162 | |
parent | fb271b8b15a9430074f1cda6e51a2ac930b95ab1 (diff) | |
download | openttd-b1561fcb52acd981eadfb3b5572aca1465739b6f.tar.xz |
(svn r17778) -Fix: remove unneeded newline from 'TOC' debug lines.
-rw-r--r-- | src/debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug.h b/src/debug.h index 8bea36330..0355bf592 100644 --- a/src/debug.h +++ b/src/debug.h @@ -84,7 +84,7 @@ const char *GetDebugString(); #define TOC(str, count)\ __sum__ += ottd_rdtsc() - _xxx_;\ if (++__i__ == count) {\ - DEBUG(misc, 0, "[%s] " OTTD_PRINTF64 " [avg: %.1f]\n", str, __sum__, __sum__/(double)__i__);\ + DEBUG(misc, 0, "[%s] " OTTD_PRINTF64 " [avg: %.1f]", str, __sum__, __sum__/(double)__i__);\ __i__ = 0;\ __sum__ = 0;\ }\ |