mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
[oss4] Fix compiler warning about unused return value
This commit is contained in:
parent
080c2a952a
commit
665a06a44e
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue