4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 04:49:25 +08:00

Cygwin: FIFO: fix a thinko in raw_write

Remove a line that has no effect.
This commit is contained in:
Ken Brown 2019-06-25 17:14:50 -04:00
parent 3dcc10ec90
commit 09e2ec87ef

View File

@ -717,7 +717,6 @@ fhandler_fifo::raw_write (const void *ptr, size_t len)
set_errno (EBADF);
else
__seterrno ();
len = (size_t) -1;
}
else if (NT_SUCCESS (status))
{