Commit f41d0cb5 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

kernel32/tests: Remove extraneous check.

parent f35b93c6
......@@ -150,8 +150,7 @@ static void test_Heap(void)
dwSize = HeapSize(heap, 0, mem1);
/* should work with 0-length buffer */
ok((dwSize >= 0) && (dwSize < 0xFFFFFFFF),
"The size of the 0-length buffer\n");
ok(dwSize < 0xFFFFFFFF, "The size of the 0-length buffer\n");
ok(HeapFree(heap, 0, mem1), "Freed the 0-length buffer\n");
/* Check that HeapDestry works */
......
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