summaryrefslogtreecommitdiff
path: root/src/xcb_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xcb_util.c')
-rw-r--r--src/xcb_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xcb_util.c b/src/xcb_util.c
index edda641..2121098 100644
--- a/src/xcb_util.c
+++ b/src/xcb_util.c
@@ -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;
}