Skip to content
Snippets Groups Projects
Commit e84d2702 authored by Konstantin Kondratyuk's avatar Konstantin Kondratyuk Committed by Alexandre Julliard
Browse files

ntdll: Correct a copy/paste mistake in NtWriteFile.

parent 60e122b0
No related branches found
No related tags found
No related merge requests found
......@@ -881,7 +881,7 @@ NTSTATUS WINAPI NtWriteFile(HANDLE hFile, HANDLE hEvent,
timeout = get_next_io_timeout( &timeouts, total );
pfd.fd = unix_handle;
pfd.events = POLLIN;
pfd.events = POLLOUT;
if (!timeout || !(ret = poll( &pfd, 1, timeout )))
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment