Commit dc5b2296 authored by Jarkko Korpi's avatar Jarkko Korpi Committed by Alexandre Julliard

kernel32: Silence repeated LocaleNameToLCID unsupported flags.

parent 1d82495b
...@@ -1396,8 +1396,10 @@ LANGID WINAPI GetSystemDefaultUILanguage(void) ...@@ -1396,8 +1396,10 @@ LANGID WINAPI GetSystemDefaultUILanguage(void)
LCID WINAPI LocaleNameToLCID( LPCWSTR name, DWORD flags ) LCID WINAPI LocaleNameToLCID( LPCWSTR name, DWORD flags )
{ {
struct locale_name locale_name; struct locale_name locale_name;
static int once;
if (flags) FIXME( "unsupported flags %x\n", flags ); if (flags && !once++)
FIXME( "unsupported flags %x\n", flags );
if (name == LOCALE_NAME_USER_DEFAULT) if (name == LOCALE_NAME_USER_DEFAULT)
return GetUserDefaultLCID(); return GetUserDefaultLCID();
...@@ -1427,7 +1429,8 @@ LCID WINAPI LocaleNameToLCID( LPCWSTR name, DWORD flags ) ...@@ -1427,7 +1429,8 @@ LCID WINAPI LocaleNameToLCID( LPCWSTR name, DWORD flags )
*/ */
INT WINAPI LCIDToLocaleName( LCID lcid, LPWSTR name, INT count, DWORD flags ) INT WINAPI LCIDToLocaleName( LCID lcid, LPWSTR name, INT count, DWORD flags )
{ {
if (flags) FIXME( "unsupported flags %x\n", flags ); static int once;
if (flags && !once++) FIXME( "unsupported flags %x\n", flags );
return GetLocaleInfoW( lcid, LOCALE_SNAME | LOCALE_NOUSEROVERRIDE, name, count ); return GetLocaleInfoW( lcid, LOCALE_SNAME | LOCALE_NOUSEROVERRIDE, name, count );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment