diff options
author | Mike McCormack <mikem@atratus.org> | 2012-10-15 12:12:36 +0000 |
---|---|---|
committer | Mike McCormack <mikem@ring3k.org> | 2012-10-15 12:12:36 +0000 |
commit | 27ae7e7cdb6e5470e4213be634dcc78d04f4f041 (patch) | |
tree | b3a9a3f638c3c90ca916908aac0e070ffd5f06e1 /legacy/ecore/src/lib/ecore/ecore_poll.c | |
parent | 9b564d2dc6f6649d918116019df09386c7afcbea (diff) |
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
Diffstat (limited to '')
-rw-r--r-- | legacy/ecore/src/lib/ecore/ecore_poll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/legacy/ecore/src/lib/ecore/ecore_poll.c b/legacy/ecore/src/lib/ecore/ecore_poll.c index 863984884e..a551e769b8 100644 --- a/legacy/ecore/src/lib/ecore/ecore_poll.c +++ b/legacy/ecore/src/lib/ecore/ecore_poll.c | |||
@@ -270,7 +270,7 @@ _poller_constructor(Eo *obj, void *_pd, va_list *list) | |||
270 | if (EINA_UNLIKELY(!eina_main_loop_is())) | 270 | if (EINA_UNLIKELY(!eina_main_loop_is())) |
271 | { | 271 | { |
272 | eo_error_set(obj); | 272 | eo_error_set(obj); |
273 | EINA_MAIN_LOOP_CHECK_RETURN_VAL(EINA_FALSE); | 273 | EINA_MAIN_LOOP_CHECK_RETURN; |
274 | } | 274 | } |
275 | 275 | ||
276 | eo_do_super(obj, eo_constructor()); | 276 | eo_do_super(obj, eo_constructor()); |