Skip to content

Commit

Permalink
[ROSTESTS] Revert format
Browse files Browse the repository at this point in the history
  • Loading branch information
julenuri committed Jun 18, 2024
1 parent 4e01ecb commit e98e3f2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions modules/rostests/apitests/kernel32/Pipes.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ PipeReader(

if(dReadBufferSize == MINBUFFERSIZE)
ok(!Success, "Pipe's ReadFile returned TRUE, instead of expected FALSE\n");
else{
else(
ok(Success, "Pipe's ReadFile returned FALSE, instead of expected TRUE\n");
if(dwLastError != 0)
trace("Last Error = 0x%lX\n",dwLastError);
}
)

ok(cbRead > 0,"Pipe's Readfile has lpNumberOfBytesRead <= 0\n");

Expand All @@ -100,7 +100,8 @@ PipeReader(
}

VOID
StartTestCORE17376(DWORD adReadBufferSize)
StartTestCORE17376(
_In_ DWORD adReadBufferSize)
{
HANDLE hThread;

Expand Down

0 comments on commit e98e3f2

Please sign in to comment.