examples: fix compiler warning in compositor crossfade example
authorTim-Philipp Müller <tim@centricular.com>
Thu, 3 Aug 2017 19:21:17 +0000 (20:21 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Thu, 3 Aug 2017 19:21:17 +0000 (20:21 +0100)
warning: control reaches end of non-void function

tests/examples/compositor/crossfade.c

index de8dd45..ea2bb42 100644 (file)
@@ -132,4 +132,6 @@ main (int argc, char *argv[])
     gst_print ("Timeout\n");
   gst_element_set_state (pipeline, GST_STATE_NULL);
   gst_object_unref (pipeline);
+
+  return 0;
 }