diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2006-04-19 21:51:33 -0700 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2006-04-19 21:51:33 -0700 |
commit | 05a66af895442b9fceb96c9130e77694927eabaf (patch) | |
tree | aaca401df8ffccb12379145100fffbe55b3196e5 | |
parent | f705456744fe4beb193d27eb64fa9157102db753 (diff) |
Bugfix: xcb_conn.c included <sys/fcntl.h> instead of the POSIX-standard <fcntl.h>.
-rw-r--r-- | src/xcb_conn.c | 2 |
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" |