Commit 4eaa85ad authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

kernel32: Fix typo in enum_locale_ex_proc.

parent 4e53f0ca
......@@ -2392,7 +2392,7 @@ static BOOL CALLBACK enum_locale_ex_proc( HMODULE module, LPCWSTR type,
neutral = 0;
flags = LOCALE_WINDOWS;
flags |= neutral ? LOCALE_NEUTRALDATA : LOCALE_SPECIFICDATA;
if (data->flags && ~(data->flags & flags)) return TRUE;
if (data->flags && !(data->flags & flags)) return TRUE;
return data->proc( buffer, flags, data->lparam );
}
......
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