From 2a815f8820ca402626bd283dd5b75744ddeb9812 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 23 May 2015 18:55:59 +0000 Subject: mir_tstrncpy <> _tcsncpy git-svn-id: http://svn.miranda-ng.org/main/trunk@13791 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/ConnectionNotify/src/debug.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/ConnectionNotify/src/debug.cpp') diff --git a/plugins/ConnectionNotify/src/debug.cpp b/plugins/ConnectionNotify/src/debug.cpp index 8e09246b6d..b35421de9e 100644 --- a/plugins/ConnectionNotify/src/debug.cpp +++ b/plugins/ConnectionNotify/src/debug.cpp @@ -28,7 +28,7 @@ void _OutputDebugString(TCHAR* lpOutputString, ...) { TCHAR* s = va_arg(argptr, TCHAR *); mir_sntprintf(OutMsg, SIZEOF(OutMsg), format, s); - mir_tstrncpy(format, OutMsg, _countof(OutMsg)); + _tcsncpy(format, OutMsg, _countof(OutMsg)); j = (int)mir_tstrlen(format); mir_tstrcat(format, _T(" ")); break; @@ -38,7 +38,7 @@ void _OutputDebugString(TCHAR* lpOutputString, ...) { char c = (char)va_arg(argptr, int); mir_sntprintf(OutMsg, SIZEOF(OutMsg), format, c); - mir_tstrncpy(format, OutMsg, _countof(OutMsg)); + _tcsncpy(format, OutMsg, _countof(OutMsg)); j = (int)mir_tstrlen(format); mir_tstrcat(format, _T(" ")); break; @@ -48,7 +48,7 @@ void _OutputDebugString(TCHAR* lpOutputString, ...) { int d = va_arg(argptr, int); mir_sntprintf(OutMsg, SIZEOF(OutMsg), format, d); - mir_tstrncpy(format, OutMsg, _countof(OutMsg)); + _tcsncpy(format, OutMsg, _countof(OutMsg)); j = (int)mir_tstrlen(format); mir_tstrcat(format, _T(" ")); break; -- cgit v1.2.3