summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2010-01-20 13:29:52 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-05-11 19:02:54 +0100
commit117485973a6b514c7a5ecf7ce205ac7b38e34301 (patch)
treeb29a8fa6b40158af7c65e20044057721dc7b7520
parent54986f85c6ebb91506b5db8853598a109b6a15f3 (diff)
Fix compiler warning about unused return value
-rw-r--r--sys/oss4/oss4-mixer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/oss4/oss4-mixer.c b/sys/oss4/oss4-mixer.c
index a67bb102d..11227c7d2 100644
--- a/sys/oss4/oss4-mixer.c
+++ b/sys/oss4/oss4-mixer.c
@@ -494,7 +494,8 @@ gst_oss4_mixer_watch_thread (gpointer thread_data)
* add in ever iteration, which would be less exact, but who cares */
g_get_current_time (&tv);
g_time_val_add (&tv, GST_OSS4_MIXER_WATCH_INTERVAL * 1000);
- g_cond_timed_wait (mixer->watch_cond, GST_OBJECT_GET_LOCK (mixer), &tv);
+ (void) g_cond_timed_wait (mixer->watch_cond, GST_OBJECT_GET_LOCK (mixer),
+ &tv);
}
GST_OBJECT_UNLOCK (mixer);