kernel32: Change a FIXME to a WARN.
This commit is contained in:
parent
399321c4f2
commit
083bb7e9d1
@ -2375,8 +2375,9 @@ INT WINAPI CompareStringW(LCID lcid, DWORD style,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* this style is related to diacritics in Arabic, Japanese, and Hebrew */
|
||||||
if (style & 0x10000000)
|
if (style & 0x10000000)
|
||||||
FIXME("Ignoring unknown style 0x10000000\n");
|
WARN("Ignoring unknown style 0x10000000\n");
|
||||||
|
|
||||||
if (len1 < 0) len1 = strlenW(str1);
|
if (len1 < 0) len1 = strlenW(str1);
|
||||||
if (len2 < 0) len2 = strlenW(str2);
|
if (len2 < 0) len2 = strlenW(str2);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user