diff options
author | Benjamin Otte <otte@redhat.com> | 2010-01-20 13:29:52 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-01-20 13:30:39 +0100 |
commit | 665a06a44e7b08626f2a88d520925c324f0c4714 (patch) | |
tree | 9f2dd31e03768dfb13e1861685d88642fe8c3727 /sys | |
parent | 080c2a952a06b7b4d04f62e2f2c04147d077e4c4 (diff) |
[oss4] Fix compiler warning about unused return value
Diffstat (limited to 'sys')
-rw-r--r-- | sys/oss4/oss4-mixer.c | 3 |
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); |