gst-play: fix compiler warning
authorTim-Philipp Müller <tim@centricular.com>
Sat, 28 Feb 2015 13:31:41 +0000 (13:31 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 28 Feb 2015 13:31:41 +0000 (13:31 +0000)
‘return’ with no value, in function returning non-void

tools/gst-play.c

index 3f0516a..860e451 100644 (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;