mirror of
https://github.com/reactos/wine.git
synced 2025-02-21 13:23:25 +00:00
kernel32/tests: Fix the unimplemented check for EnumSystemLanguageGroupsA.
This commit is contained in:
parent
0b7478a79f
commit
f0483957dd
@ -2163,7 +2163,7 @@ static void test_EnumSystemLanguageGroupsA(void)
|
||||
/* No enumeration proc */
|
||||
SetLastError(0);
|
||||
ret = pEnumSystemLanguageGroupsA(0, LGRPID_INSTALLED, 0);
|
||||
if (ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
||||
if (!ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
||||
{
|
||||
win_skip("EnumSystemLanguageGroupsA is not implemented\n");
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user