kernel32: Change a FIXME to a WARN.

This commit is contained in:
Mike McCormack 2006-08-18 14:09:15 +09:00 committed by Alexandre Julliard
parent 399321c4f2
commit 083bb7e9d1
1 changed files with 2 additions and 1 deletions

View File

@ -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);