cygwin: fix stray semicolon
introduced by patch 1c50e0d1ab
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
2640628b09
commit
2e989b2129
|
@ -623,7 +623,7 @@ fhandler_socket::init_events ()
|
||||||
NtClose (wsock_mtx);
|
NtClose (wsock_mtx);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!(wsock_events = search_wsa_event_slot (new_serial_number)));
|
if (!(wsock_events = search_wsa_event_slot (new_serial_number)))
|
||||||
{
|
{
|
||||||
set_errno (ENOBUFS);
|
set_errno (ENOBUFS);
|
||||||
NtClose (wsock_evt);
|
NtClose (wsock_evt);
|
||||||
|
|
Loading…
Reference in New Issue