Fix indentation.

This commit is contained in:
Daniel G 2023-01-09 16:21:35 +00:00
parent 973b510e95
commit 3333d5bde8

View File

@ -390,9 +390,9 @@ static int _xcb_open_tcp(const char *host, char *protocol, const unsigned short
if (_xcb_do_connect(fd, addr->ai_addr, addr->ai_addrlen) >= 0)
break;
#ifdef _WIN32
closesocket(fd);
closesocket(fd);
#else
close(fd);
close(fd);
#endif
fd = -1;
}