From b1561fcb52acd981eadfb3b5572aca1465739b6f Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 15 Oct 2009 20:15:12 +0000 Subject: [PATCH] (svn r17778) -Fix: remove unneeded newline from 'TOC' debug lines. --- src/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug.h b/src/debug.h index 8bea36330b..0355bf5920 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;\ }\