diff options
Diffstat (limited to 'src/core/stduihist')
-rw-r--r-- | src/core/stduihist/src/history.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/stduihist/src/history.cpp b/src/core/stduihist/src/history.cpp index a321e9f5dd..176a761ac4 100644 --- a/src/core/stduihist/src/history.cpp +++ b/src/core/stduihist/src/history.cpp @@ -55,7 +55,7 @@ static void GetUrlDescription(DBEVENTINFO *dbei, TCHAR* buf, int cbBuf) buf[ len ] = 0;
if (len < cbBuf-3)
- _tcscat(buf, _T("\r\n"));
+ mir_tstrcat(buf, _T("\r\n"));
}
static void GetFileDescription(DBEVENTINFO *dbei, TCHAR* buf, int cbBuf)
@@ -68,7 +68,7 @@ static void GetFileDescription(DBEVENTINFO *dbei, TCHAR* buf, int cbBuf) buf[ len ] = 0;
if (len < cbBuf-3)
- _tcscat(buf, _T("\r\n"));
+ mir_tstrcat(buf, _T("\r\n"));
}
static void GetObjectDescription(DBEVENTINFO *dbei, TCHAR* str, int cbStr)
|