diff options
author | Szymon Tokarz <wsx22@o2.pl> | 2013-12-13 21:45:12 +0000 |
---|---|---|
committer | Szymon Tokarz <wsx22@o2.pl> | 2013-12-13 21:45:12 +0000 |
commit | 2c73c95d00f1637031042a75fc99d2a4ba92d21b (patch) | |
tree | 3045572929b98ce11069aa0bd849027f7631e0d6 /protocols/Gadu-Gadu/src/gg.cpp | |
parent | aebf745f5f337aedd7abe0c25322b91f51c81310 (diff) |
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
Diffstat (limited to 'protocols/Gadu-Gadu/src/gg.cpp')
-rw-r--r-- | protocols/Gadu-Gadu/src/gg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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);
|