ws2_32: Remove two noop checks.

This commit is contained in:
Gerald Pfeifer 2008-01-02 15:59:59 +01:00 committed by Alexandre Julliard
parent 21a9c2d2f9
commit 257f519eb5
1 changed files with 2 additions and 2 deletions

View File

@ -816,10 +816,10 @@ static void do_test( test_setup *test )
WaitForSingleObject ( server_ready, INFINITE );
wait = WaitForMultipleObjects ( 1 + n, thread, TRUE, 1000 * TEST_TIMEOUT );
ok ( wait >= WAIT_OBJECT_0 && wait <= WAIT_OBJECT_0 + n ,
ok ( wait <= WAIT_OBJECT_0 + n ,
"some threads have not completed: %x\n", wait );
if ( ! ( wait >= WAIT_OBJECT_0 && wait <= WAIT_OBJECT_0 + n ) )
if ( ! ( wait <= WAIT_OBJECT_0 + n ) )
{
for (i = 0; i <= n; i++)
{