diff options
author | Jeetu Golani <jeetu.golani@gmail.com> | 2010-03-29 22:31:49 +0530 |
---|---|---|
committer | Jeetu Golani <jeetu.golani@gmail.com> | 2010-03-29 22:31:49 +0530 |
commit | 36c9a985aaee655c118c9f7b8425d3ac9ce0f840 (patch) | |
tree | dfef59290b122ed4906a4f6f0e881760d1da55ff /src/xcb_conn.c | |
parent | bce72f63d2dfb61661f81e305ad3a7db0334403c (diff) |
windefs.h is now called xcb_windefs.h - changed all includes to reflect that.Replaced one instance ofWIN32 with _WIN32 in each xcb_in.c and xcb_conn.c
Diffstat (limited to 'src/xcb_conn.c')
-rw-r--r-- | src/xcb_conn.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xcb_conn.c b/src/xcb_conn.c index 4a50af3..870c438 100644 --- a/src/xcb_conn.c +++ b/src/xcb_conn.c @@ -37,12 +37,12 @@ #include "xcbint.h" #if USE_POLL #include <poll.h> -#elif !defined WIN32 +#elif !defined _WIN32 #include <sys/select.h> #endif #ifdef _WIN32 -#include "windefs.h" +#include "xcb_windefs.h" #else #include <netinet/in.h> #endif /* _WIN32 */ @@ -77,7 +77,7 @@ static int set_fd_flags(const int fd) if(fcntl(fd, F_SETFD, FD_CLOEXEC) == -1) return 0; return 1; -#endif /* WIN32 */ +#endif /* _WIN32 */ } static int write_setup(xcb_connection_t *c, xcb_auth_info_t *auth_info) |