summaryrefslogtreecommitdiff
path: root/plugins/Folders/src/services.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Folders/src/services.cpp')
-rw-r--r--plugins/Folders/src/services.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Folders/src/services.cpp b/plugins/Folders/src/services.cpp
index 008daa2254..4447fdece5 100644
--- a/plugins/Folders/src/services.cpp
+++ b/plugins/Folders/src/services.cpp
@@ -39,7 +39,7 @@ INT_PTR ExpandPath(TCHAR *szResult, TCHAR *format, int size)
input = mir_tstrdup(format);
TCHAR *core_result = Utils_ReplaceVarsT(input);
- mir_tstrncpy(szResult, core_result, size);
+ _tcsncpy(szResult, core_result, size);
mir_free(core_result);
@@ -109,7 +109,7 @@ INT_PTR GetPathService(WPARAM wParam, LPARAM lParam)
TCHAR buf[MAX_FOLDER_SIZE];
p->Expand(buf, SIZEOF(buf));
- mir_strncpy(data->szPath, _T2A(buf), data->nMaxPathSize);
+ strncpy(data->szPath, _T2A(buf), data->nMaxPathSize);
return 0;
}