2 Jul
2025
2 Jul
'25
8:30 a.m.
Dmitry Timoshkov (@dmitry) commented about dlls/user32/tests/class.c:
ok(res != 0, "unexpected class atom %#Ix\n", res); SetLastError(0xdeadbeef); res = SetClassWord(hwnd, GCW_ATOM, 2); - todo_wine ok(res == 0, "SetClassLongPtrA returned %#Ix\n", res); - todo_wine ok(GetLastError() == ERROR_INVALID_INDEX, "got error %lu\n", GetLastError()); + ok(res == 0, "SetClassLongPtrA returned %#Ix\n", res);
It's an existing typo (SetClassWord/SetClassLongPtrA), but since the lines are changed this could be fixed as well. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8486#note_108638