mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
gst-play: fix compiler warning
‘return’ with no value, in function returning non-void
This commit is contained in:
parent
0e9dac0cc7
commit
12ed0428a9
1 changed files with 1 additions and 1 deletions
|
@ -655,7 +655,7 @@ play_set_rate_and_trick_mode (GstPlay * play, gdouble rate,
|
|||
gboolean seekable = FALSE;
|
||||
gint64 pos = -1;
|
||||
|
||||
g_return_if_fail (rate != 0);
|
||||
g_return_val_if_fail (rate != 0, FALSE);
|
||||
|
||||
if (!gst_element_query_position (play->playbin, GST_FORMAT_TIME, &pos))
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue