mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
[OLEACC_WINETEST] Sync with Wine Staging 1.7.55. CORE-10536
svn path=/trunk/; revision=70112
This commit is contained in:
parent
51d1ac8906
commit
b71a31e77c
1 changed files with 2 additions and 2 deletions
|
@ -445,7 +445,7 @@ static void test_GetStateText(void)
|
|||
ret = GetStateTextW(1<<i, buf, 1024);
|
||||
ok(ret, "%d) GetStateText failed\n", i);
|
||||
}
|
||||
ret = GetStateTextW(1<<31, buf, 1024);
|
||||
ret = GetStateTextW(1u<<31, buf, 1024);
|
||||
ok(!ret, "31) GetStateText succeeded: %d\n", ret);
|
||||
|
||||
ret = GetStateTextW(2, buf, 1024);
|
||||
|
@ -478,7 +478,7 @@ static void test_GetStateText(void)
|
|||
ret = GetStateTextA(1<<i, bufa, 1024);
|
||||
ok(ret, "%d) GetStateText failed\n", i);
|
||||
}
|
||||
ret = GetStateTextA(1<<31, bufa, 1024);
|
||||
ret = GetStateTextA(1u<<31, bufa, 1024);
|
||||
ok(!ret, "31) GetStateText succeeded: %d\n", ret);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue