https://git.reactos.org/?p=reactos.git;a=commitdiff;h=7a764cf6100785cf32f75dfe1b78f9797999ceb9

commit 7a764cf6100785cf32f75dfe1b78f9797999ceb9
Author:     Timo Kreuzer <timo.kreu...@reactos.org>
AuthorDate: Sun Oct 13 19:43:08 2024 +0200
Commit:     Timo Kreuzer <timo.kreu...@reactos.org>
CommitDate: Thu Jan 16 14:18:53 2025 +0200

    [UCRT] Fix invalid storage type specification
---
 sdk/lib/ucrt/locale/setlocale.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdk/lib/ucrt/locale/setlocale.cpp 
b/sdk/lib/ucrt/locale/setlocale.cpp
index f62aad32224..e017173208b 100644
--- a/sdk/lib/ucrt/locale/setlocale.cpp
+++ b/sdk/lib/ucrt/locale/setlocale.cpp
@@ -12,7 +12,7 @@
 #include <locale.h>
 #include <stdlib.h>
 
-extern "C" static wchar_t* __cdecl call_wsetlocale(int const category, char 
const* const narrow_locale)
+static wchar_t* __cdecl call_wsetlocale(int const category, char const* const 
narrow_locale)
 {
     if (narrow_locale == nullptr)
         return _wsetlocale(category, nullptr);

Reply via email to