Commit 51764497 authored by Alexandre Julliard's avatar Alexandre Julliard

shell32/tests: Fix an unsigned comparison warning.

parent 1f563440
......@@ -123,7 +123,7 @@ static void test_SHAppBarMessage(void)
ok(abd.hWnd == (HWND)0xcccccccc, "hWnd overwritten\n");
todo_wine
{
ok(abd.uEdge >= ABE_LEFT && abd.uEdge <= ABE_BOTTOM, "uEdge not returned\n");
ok(abd.uEdge <= ABE_BOTTOM, "uEdge not returned\n");
ok(abd.rc.left != 0xcccccccc, "rc not updated\n");
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment