add missing brace

This commit is contained in:
Richard Frith-Macdonald 2021-06-21 09:15:11 +01:00
parent e34584e323
commit 640198a395

View file

@ -83,7 +83,7 @@ static int socketError()
{
int e = WSAGetLastError();
switch (e)
switch (e) {
case WSAEWOULDBLOCK: return EAGAIN;
case WSAEINTR: return EINTR;
default: return e;