diff options
author | Daniel G <giri@nwrk.biz> | 2023-01-09 16:21:35 +0000 |
---|---|---|
committer | Daniel G <giri@nwrk.biz> | 2023-01-09 16:21:35 +0000 |
commit | 3333d5bde8baaca8981e806ef86b74f4adb77ba7 (patch) | |
tree | 6af30e0173d36de674ed52c6c4378d4e39630741 | |
parent | 973b510e954f6989ed773f8b357ca50fbc99bced (diff) |
Fix indentation.
-rw-r--r-- | src/xcb_util.c | 4 |
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; } |