From b3cd430b0265c1ba7d46fea3f9211b5fc1490aa1 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 7 Oct 2019 18:40:09 +0200 Subject: [PATCH] ci: fix return value warning in test build code Summary: this is a void function Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D10272 --- .ci/example/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/example/src/main.c b/.ci/example/src/main.c index 1d1230e496..61751a16a7 100644 --- a/.ci/example/src/main.c +++ b/.ci/example/src/main.c @@ -6,6 +6,6 @@ EAPI_MAIN void efl_main(void *data EINA_UNUSED, const Efl_Event *ev EINA_UNUSED) { - return 0; + return; } EFL_MAIN()