From 11c185ebb3013230538d4a48656b23bf81d31055 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 23 May 2015 16:43:34 +0000 Subject: replace _tcscat to mir_tstrcat git-svn-id: http://svn.miranda-ng.org/main/trunk@13778 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/ConnectionNotify/src/debug.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/ConnectionNotify') diff --git a/plugins/ConnectionNotify/src/debug.cpp b/plugins/ConnectionNotify/src/debug.cpp index 633a048af4..b35421de9e 100644 --- a/plugins/ConnectionNotify/src/debug.cpp +++ b/plugins/ConnectionNotify/src/debug.cpp @@ -30,7 +30,7 @@ void _OutputDebugString(TCHAR* lpOutputString, ...) mir_sntprintf(OutMsg, SIZEOF(OutMsg), format, s); _tcsncpy(format, OutMsg, _countof(OutMsg)); j = (int)mir_tstrlen(format); - _tcscat(format, _T(" ")); + mir_tstrcat(format, _T(" ")); break; } // character @@ -40,7 +40,7 @@ void _OutputDebugString(TCHAR* lpOutputString, ...) mir_sntprintf(OutMsg, SIZEOF(OutMsg), format, c); _tcsncpy(format, OutMsg, _countof(OutMsg)); j = (int)mir_tstrlen(format); - _tcscat(format, _T(" ")); + mir_tstrcat(format, _T(" ")); break; } // integer @@ -50,13 +50,13 @@ void _OutputDebugString(TCHAR* lpOutputString, ...) mir_sntprintf(OutMsg, SIZEOF(OutMsg), format, d); _tcsncpy(format, OutMsg, _countof(OutMsg)); j = (int)mir_tstrlen(format); - _tcscat(format, _T(" ")); + mir_tstrcat(format, _T(" ")); break; } } format[j + 1] = '\0'; } - _tcscat(format, _T("\n")); + mir_tstrcat(format, _T("\n")); OutputDebugString(format); va_end(argptr); -- cgit v1.2.3