From f2de79cb2eb8247548650ee80d75be109ac66ee7 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 23 May 2015 16:25:49 +0000 Subject: replace strcat to mir_strcat git-svn-id: http://svn.miranda-ng.org/main/trunk@13777 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SeenPlugin/src/history.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/SeenPlugin/src') diff --git a/plugins/SeenPlugin/src/history.cpp b/plugins/SeenPlugin/src/history.cpp index 2e6f647f8d..cf3280e56e 100644 --- a/plugins/SeenPlugin/src/history.cpp +++ b/plugins/SeenPlugin/src/history.cpp @@ -27,8 +27,8 @@ char* BuildSetting(int historyLast) static char setting[15]; static char sztemp[15]; *setting = '\0'; - strcat(setting, "History_"); - strcat(setting, _itoa(historyLast, sztemp, 10)); + mir_strcat(setting, "History_"); + mir_strcat(setting, _itoa(historyLast, sztemp, 10)); return setting; } -- cgit v1.2.3