4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-21 00:07:36 +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 7faf75c189
commit a83682e167

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