diff options
author | Ladislav <Zezula> | 2013-12-16 12:18:32 +0100 |
---|---|---|
committer | Ladislav <Zezula> | 2013-12-16 12:18:32 +0100 |
commit | 60ef0346ba14b7153c9efd40d0aa6dd01d1d2671 (patch) | |
tree | b065cfb6c3ee9cc47ac85dc6d435fe017e956d86 /test/TLogHelper.cpp | |
parent | fe51da468be9ca0963192c5f3a1705562bc957ba (diff) |
+ Fixed bugs in listfile search
Diffstat (limited to 'test/TLogHelper.cpp')
-rw-r--r-- | test/TLogHelper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/TLogHelper.cpp b/test/TLogHelper.cpp index 229f9fb..6bad08e 100644 --- a/test/TLogHelper.cpp +++ b/test/TLogHelper.cpp @@ -185,7 +185,7 @@ int TLogHelper::PrintWithClreol(const TCHAR * szFormat, va_list argList, bool bP bMessagePrinted = true; // Spit out the text in one single printf - _tprintf(szMessage); + _tprintf(_T("%s"), szMessage); return nError; } @@ -283,7 +283,7 @@ int TLogHelper::PrintWithClreol(const char * szFormat, va_list argList, bool bPr bMessagePrinted = true; // Spit out the text in one single printf - printf(szMessage, 0); + printf("%s", szMessage, 0); return nError; } |