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
This commit is contained in:
Mike Blumenkrantz 2019-10-07 18:40:09 +02:00 committed by Xavi Artigas
parent 5a447ed327
commit b3cd430b02
1 changed files with 1 additions and 1 deletions

View File

@ -6,6 +6,6 @@
EAPI_MAIN void
efl_main(void *data EINA_UNUSED, const Efl_Event *ev EINA_UNUSED)
{
return 0;
return;
}
EFL_MAIN()