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) if (_xcb_do_connect(fd, addr->ai_addr, addr->ai_addrlen) >= 0)
break; break;
#ifdef _WIN32 #ifdef _WIN32
closesocket(fd); closesocket(fd);
#else #else
close(fd); close(fd);
#endif #endif
fd = -1; fd = -1;
} }