summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2006-04-19 21:51:33 -0700
committerJamey Sharp <jamey@minilop.net>2006-04-19 21:51:33 -0700
commit05a66af895442b9fceb96c9130e77694927eabaf (patch)
treeaaca401df8ffccb12379145100fffbe55b3196e5
parentf705456744fe4beb193d27eb64fa9157102db753 (diff)
Bugfix: xcb_conn.c included <sys/fcntl.h> instead of the POSIX-standard <fcntl.h>.
-rw-r--r--src/xcb_conn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xcb_conn.c b/src/xcb_conn.c
index 95b5fa2..f25cc20 100644
--- a/src/xcb_conn.c
+++ b/src/xcb_conn.c
@@ -32,7 +32,7 @@
#include <stdlib.h>
#include <netinet/in.h>
#include <sys/select.h>
-#include <sys/fcntl.h>
+#include <fcntl.h>
#include <errno.h>
#include "xcb.h"