Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
d0671ed7
Commit
d0671ed7
authored
Apr 11, 2018
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Fix typos.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9d5e33b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
pipe.c
dlls/kernel32/tests/pipe.c
+2
-2
No files found.
dlls/kernel32/tests/pipe.c
View file @
d0671ed7
...
...
@@ -3086,7 +3086,7 @@ static void create_overlapped_pipe(DWORD mode, HANDLE *client, HANDLE *server)
*
server
=
CreateNamedPipeA
(
PIPENAME
,
FILE_FLAG_OVERLAPPED
|
PIPE_ACCESS_DUPLEX
,
PIPE_WAIT
|
mode
,
1
,
5000
,
6000
,
NMPWAIT_USE_DEFAULT_WAIT
,
NULL
);
ok
(
&
server
!=
INVALID_HANDLE_VALUE
,
"CreateNamedPipe failed: %u
\n
"
,
GetLastError
());
ok
(
*
server
!=
INVALID_HANDLE_VALUE
,
"CreateNamedPipe failed: %u
\n
"
,
GetLastError
());
test_signaled
(
*
server
);
memset
(
&
overlapped
,
0
,
sizeof
(
overlapped
));
...
...
@@ -3097,7 +3097,7 @@ static void create_overlapped_pipe(DWORD mode, HANDLE *client, HANDLE *server)
test_not_signaled
(
overlapped
.
hEvent
);
*
client
=
CreateFileA
(
PIPENAME
,
GENERIC_READ
|
GENERIC_WRITE
,
0
,
&
sec_attr
,
OPEN_EXISTING
,
FILE_FLAG_OVERLAPPED
,
NULL
);
ok
(
*
server
!=
INVALID_HANDLE_VALUE
,
"CreateFile failed: %u
\n
"
,
GetLastError
());
ok
(
*
client
!=
INVALID_HANDLE_VALUE
,
"CreateFile failed: %u
\n
"
,
GetLastError
());
res
=
SetNamedPipeHandleState
(
*
client
,
&
read_mode
,
NULL
,
NULL
);
ok
(
res
,
"SetNamedPipeHandleState failed: %u
\n
"
,
GetLastError
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment