From ee11747527d0a4ffff60f5d0b1ee820001ac9319 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Sat, 11 Nov 2023 21:27:59 +0100 Subject: [PATCH] [CRT] Fix "wcsat_s" typo... --- sdk/include/crt/string.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/include/crt/string.h b/sdk/include/crt/string.h index 1dd1fe0aba1..aaa9c52f038 100644 --- a/sdk/include/crt/string.h +++ b/sdk/include/crt/string.h @@ -622,7 +622,7 @@ extern "C" { _In_z_ const wchar_t *_Str); _CRTIMP - _CRT_INSECURE_DEPRECATE(wcsat_s) + _CRT_INSECURE_DEPRECATE(wcscat_s) wchar_t* __cdecl wcscat( @@ -948,7 +948,7 @@ extern "C" { _CRTIMP errno_t __cdecl - wcsat_s( + wcscat_s( wchar_t *Dest, size_t SizeInWords, const wchar_t *_Source);