diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-23 16:43:34 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-23 16:43:34 +0000 |
commit | 11c185ebb3013230538d4a48656b23bf81d31055 (patch) | |
tree | 41f64fdbd3785621cfeb89a2c0d07ea1b2c4427f /plugins/ConnectionNotify | |
parent | f2de79cb2eb8247548650ee80d75be109ac66ee7 (diff) |
replace _tcscat to mir_tstrcat
git-svn-id: http://svn.miranda-ng.org/main/trunk@13778 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ConnectionNotify')
-rw-r--r-- | plugins/ConnectionNotify/src/debug.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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);
|