Module: wine Branch: master Commit: 26c9879a6c19847fb867d74340950535cc4014a5 URL: https://gitlab.winehq.org/wine/wine/-/commit/26c9879a6c19847fb867d7434095053...
Author: Alex Henrie alexhenrie24@gmail.com Date: Wed Nov 2 22:12:21 2022 -0600
msvcrt: Change return type of wcsncat_s to errno_t.
---
dlls/msvcrt/wcs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/msvcrt/wcs.c b/dlls/msvcrt/wcs.c index afc2498dae2..c5696071846 100644 --- a/dlls/msvcrt/wcs.c +++ b/dlls/msvcrt/wcs.c @@ -2508,7 +2508,7 @@ wchar_t* __cdecl wcscat( wchar_t *dst, const wchar_t *src ) /********************************************************************* * wcsncat_s (MSVCRT.@) */ -INT CDECL wcsncat_s(wchar_t *dst, size_t elem, const wchar_t *src, size_t count) +errno_t CDECL wcsncat_s(wchar_t *dst, size_t elem, const wchar_t *src, size_t count) { size_t i, j;