ecore: Fix warning

ecore_poll.c: In function ‘_poller_constructor’:
ecore_poll.c:273:10: warning: ‘return’ with a value, in function returning void

Signed-off-by: Mike McCormack <mikem@atratus.org>

SVN revision: 77997
This commit is contained in:
Mike McCormack 2012-10-15 12:12:36 +00:00 committed by Mike McCormack
parent 9b564d2dc6
commit 27ae7e7cdb
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ _poller_constructor(Eo *obj, void *_pd, va_list *list)
if (EINA_UNLIKELY(!eina_main_loop_is()))
{
eo_error_set(obj);
EINA_MAIN_LOOP_CHECK_RETURN_VAL(EINA_FALSE);
EINA_MAIN_LOOP_CHECK_RETURN;
}
eo_do_super(obj, eo_constructor());