ntdll: Correct a copy/paste mistake in NtWriteFile.

This commit is contained in:
Konstantin Kondratyuk 2007-05-03 15:14:25 +04:00 committed by Alexandre Julliard
parent 60e122b088
commit e84d270252

View file

@ -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 )))
{