From 2c73c95d00f1637031042a75fc99d2a4ba92d21b Mon Sep 17 00:00:00 2001 From: Szymon Tokarz Date: Fri, 13 Dec 2013 21:45:12 +0000 Subject: Gadu-Gadu protocol - debug log TCHAR's via debugLog() not debugLogA() git-svn-id: http://svn.miranda-ng.org/main/trunk@7195 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Gadu-Gadu/src/gg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'protocols/Gadu-Gadu/src/gg.cpp') diff --git a/protocols/Gadu-Gadu/src/gg.cpp b/protocols/Gadu-Gadu/src/gg.cpp index a790e63ffc..0930378b6d 100644 --- a/protocols/Gadu-Gadu/src/gg.cpp +++ b/protocols/Gadu-Gadu/src/gg.cpp @@ -157,7 +157,7 @@ void GGPROTO::cleanuplastplugin(DWORD version) TCHAR avatarsPath[MAX_PATH]; mir_sntprintf(avatarsPath, MAX_PATH, _T("%s\\%s"), VARST( _T("%miranda_avatarcache%")), m_tszUserName); - debugLogA("cleanuplastplugin() 1: miranda_avatarcache = %S", avatarsPath); + debugLog(_T("cleanuplastplugin() 1: miranda_avatarcache = %s"), avatarsPath); if (avatarsPath != NULL){ HANDLE hFind = INVALID_HANDLE_VALUE; @@ -170,7 +170,7 @@ void GGPROTO::cleanuplastplugin(DWORD version) TCHAR filePathT [2*MAX_PATH + 10]; mir_sntprintf(filePathT, 2*MAX_PATH + 10, _T("%s\\%s"), avatarsPath, ffd.cFileName); if (!_taccess(filePathT, 0)){ - debugLogA("cleanuplastplugin() 1: remove file = %S", filePathT); + debugLog(_T("cleanuplastplugin() 1: remove file = %s"), filePathT); _tremove(filePathT); } } while (FindNextFile(hFind, &ffd) != 0); -- cgit v1.2.3