ximagesrc: Fix warning about missing return value

This commit is contained in:
Nicolas Dufresne 2014-07-31 09:53:53 -04:00
parent c82052e723
commit 2c870ff167

View file

@ -321,7 +321,7 @@ gst_ximagesrc_buffer_dispose (GstBuffer * ximage)
GstMetaXImage *meta;
gboolean ret = TRUE;
g_return_if_fail (ximage != NULL);
g_return_val_if_fail (ximage != NULL, FALSE);
meta = GST_META_XIMAGE_GET (ximage);