kernel32/tests: Add a trailing '\n' to an ok() call.

oldstable
Francois Gouget 2012-06-18 11:38:38 +02:00 committed by Alexandre Julliard
parent bde60cb951
commit dc2956206f
1 changed files with 1 additions and 1 deletions

View File

@ -872,7 +872,7 @@ static DWORD CALLBACK serverThreadMain5(LPVOID arg)
}
ok(completion_called == 1, "completion routine called %i times\n", completion_called);
ok(completion_errorcode == ERROR_SUCCESS, "completion routine got error %d\n", completion_errorcode);
ok(completion_num_bytes != 0, "read 0 bytes");
ok(completion_num_bytes != 0, "read 0 bytes\n");
ok(completion_lpoverlapped == &oOverlap, "got wrong overlapped pointer %p\n", completion_lpoverlapped);
readden = completion_num_bytes;
trace("Server done reading.\n");