Skip to content

Commit f6ae1fc

Browse files
Update modules/rostests/apitests/kernel32/Pipes.c
Co-authored-by: Serge Gautherie <[email protected]>
1 parent 5975639 commit f6ae1fc

File tree

1 file changed

+1
-1
lines changed
  • modules/rostests/apitests/kernel32

1 file changed

+1
-1
lines changed

modules/rostests/apitests/kernel32/Pipes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ DWORD WINAPI PipeWriter(_In_ PVOID Param)
3232
DWORD WINAPI PipeReader(_In_ PVOID Param)
3333
{
3434
CHAR outMsg[MAXBUFFERSIZE];
35-
HANDLE hPipe=(HANDLE)Param;
35+
HANDLE hPipe = (HANDLE)Param;
3636

3737
DWORD cbRead = 0;
3838
BOOL Success = ReadFile(hPipe, outMsg, g_dwReadBufferSize, &cbRead, NULL);

0 commit comments

Comments
 (0)