summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaarten Bosmans <mkbosmans@gmail.com>2011-06-23 22:21:00 +0200
committerColin Guthrie <colin@mageia.org>2011-06-24 00:29:47 +0100
commit8ce326816ba20d33f9d1ca5c2b290fa8a0b6f19c (patch)
tree90ea1280a531f179ddabda4cd4fa5c1d592d8b1f
parentf0eab391df7c77b739eadc6c030ead1f4d68c72d (diff)
Add sys/time.h include to rtclock.c
Cross-compiling for win32 failed after the previous #include removal. Somehow when building for Linux the struct timeval definition got picked up elsewhere.
-rw-r--r--src/pulse/rtclock.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pulse/rtclock.c b/src/pulse/rtclock.c
index baa0f3a5..dd1b6009 100644
--- a/src/pulse/rtclock.c
+++ b/src/pulse/rtclock.c
@@ -23,7 +23,10 @@
#include <config.h>
#endif
+#include <sys/time.h>
+
#include <pulse/timeval.h>
+
#include <pulsecore/core-rtclock.h>
#include "rtclock.h"