(svn r17778) -Fix: remove unneeded newline from 'TOC' debug lines.

This commit is contained in:
rubidium 2009-10-15 20:15:12 +00:00
parent fb271b8b15
commit b1561fcb52
1 changed files with 1 additions and 1 deletions

View File

@ -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;\
}\