From d682c74c1e889ffa760af7370b3cd0495189a1a7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 22 Mar 2019 23:36:42 +0000 Subject: [PATCH] examples: rtsp: fix compiler warning "control reaches end of non-void function" --- tests/examples/rtsp/test-onvif.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/examples/rtsp/test-onvif.c b/tests/examples/rtsp/test-onvif.c index 3a46491..2f47445 100644 --- a/tests/examples/rtsp/test-onvif.c +++ b/tests/examples/rtsp/test-onvif.c @@ -104,4 +104,5 @@ main (int argc, char *argv[]) gst_element_set_state (pipeline, GST_STATE_PLAYING); g_main_loop_run (loop); + return 0; } -- 2.7.4