Commit 083bb7e9 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

kernel32: Change a FIXME to a WARN.

parent 399321c4
......@@ -2375,8 +2375,9 @@ INT WINAPI CompareStringW(LCID lcid, DWORD style,
return 0;
}
/* this style is related to diacritics in Arabic, Japanese, and Hebrew */
if (style & 0x10000000)
FIXME("Ignoring unknown style 0x10000000\n");
WARN("Ignoring unknown style 0x10000000\n");
if (len1 < 0) len1 = strlenW(str1);
if (len2 < 0) len2 = strlenW(str2);
......
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