gst-play: fix compiler warning

‘return’ with no value, in function returning non-void
This commit is contained in:
Tim-Philipp Müller 2015-02-28 13:31:41 +00:00
parent 0e9dac0cc7
commit 12ed0428a9

View file

@ -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;