diff options
author | Pierre Ossman <ossman@cendio.se> | 2007-10-03 14:41:21 +0000 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2007-10-03 14:41:21 +0000 |
commit | ef8812e89bb867f127813e1b193589a52f0f2073 (patch) | |
tree | 20dfdd766bc48d90ebd5202815985ecbcf6df199 /src/pulse/mainloop.c | |
parent | 7c1768d4d1a61b998811c5044e16525b05cd88b0 (diff) |
Replace all references to sys/poll.h with poll.h as that's what POSIX defines.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1925 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/pulse/mainloop.c')
-rw-r--r-- | src/pulse/mainloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pulse/mainloop.c b/src/pulse/mainloop.c index bab8eb5c..ad4e4e97 100644 --- a/src/pulse/mainloop.c +++ b/src/pulse/mainloop.c @@ -34,8 +34,8 @@ #include <fcntl.h> #include <errno.h> -#ifdef HAVE_SYS_POLL_H -#include <sys/poll.h> +#ifdef HAVE_POLL_H +#include <poll.h> #else #include <pulsecore/poll.h> #endif |