https://git.reactos.org/?p=reactos.git;a=commitdiff;h=ee11747527d0a4ffff60f5...
commit ee11747527d0a4ffff60f5d0b1ee820001ac9319 Author: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org AuthorDate: Sat Nov 11 21:27:59 2023 +0100 Commit: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org CommitDate: Sat Nov 11 21:30:09 2023 +0100
[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);