From a70bd7066553dd6e0f0d596936ef2c6c2455eaed Mon Sep 17 00:00:00 2001 From: michaelangel007 Date: Thu, 30 Jul 2015 09:21:31 -0700 Subject: [PATCH] De-space, convert to tabs --- source/Log.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/source/Log.cpp b/source/Log.cpp index d8963ffe..fb419b05 100644 --- a/source/Log.cpp +++ b/source/Log.cpp @@ -33,13 +33,13 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA void LogOutput(LPCTSTR format, ...) { - TCHAR output[256]; + TCHAR output[256]; - va_list args; - va_start(args, format); + va_list args; + va_start(args, format); - _vsntprintf(output, sizeof(output) - 1, format, args); - OutputDebugString(output); + _vsntprintf(output, sizeof(output) - 1, format, args); + OutputDebugString(output); } //--------------------------------------------------------------------------- @@ -51,11 +51,11 @@ void LogFileOutput(LPCTSTR format, ...) if (!g_fh) return; - TCHAR output[256]; + TCHAR output[256]; - va_list args; - va_start(args, format); + va_list args; + va_start(args, format); - _vsntprintf(output, sizeof(output) - 1, format, args); - fprintf(g_fh, "%s", output); + _vsntprintf(output, sizeof(output) - 1, format, args); + fprintf(g_fh, "%s", output); }