[OLEACC_WINETEST] Sync with Wine Staging 1.7.55. CORE-10536

svn path=/trunk/; revision=70112
This commit is contained in:
Amine Khaldi 2015-11-25 14:28:16 +00:00
parent 51d1ac8906
commit b71a31e77c

View file

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