kernel32: Fix a failing test in win95.

This commit is contained in:
James Hawkins 2008-08-28 21:13:32 -05:00 committed by Alexandre Julliard
parent 4c7cb8a339
commit 9aef134bdc
1 changed files with 3 additions and 1 deletions

View File

@ -241,7 +241,9 @@ static void test_string_conversion(LPBOOL bUsedDefaultChar)
ok(ret == 1, "ret is %d\n", ret);
ok(mbc == -16, "mbc is %d\n", mbc);
if(bUsedDefaultChar) ok(*bUsedDefaultChar == FALSE, "bUsedDefaultChar is %d\n", *bUsedDefaultChar);
ok(GetLastError() == 0xdeadbeef, "GetLastError() is %u\n", GetLastError());
ok(GetLastError() == 0xdeadbeef ||
broken(GetLastError() == 0), /* win95 */
"GetLastError() is %u\n", GetLastError());
SetLastError(0xdeadbeef);
ret = WideCharToMultiByte(1251, 0, &wc1, 1, &mbc, 1, NULL, bUsedDefaultChar);