diff --git a/legacy/ecore/src/examples/ecore_idler_example.c b/legacy/ecore/src/examples/ecore_idler_example.c index d19fce33bd..371ca5b3ff 100644 --- a/legacy/ecore/src/examples/ecore_idler_example.c +++ b/legacy/ecore/src/examples/ecore_idler_example.c @@ -82,7 +82,7 @@ _timer_cb(void *data) if (ctxt->timer) ctxt->timer = NULL; - return ECORE_CALLBACK_CANCEL; // same as EINA_TRUE + return ECORE_CALLBACK_CANCEL; // same as EINA_FALSE } int main(int argc, char **argv) diff --git a/legacy/ecore/src/lib/ecore/Ecore.h b/legacy/ecore/src/lib/ecore/Ecore.h index 7dbafb8a9f..6c15b4beda 100644 --- a/legacy/ecore/src/lib/ecore/Ecore.h +++ b/legacy/ecore/src/lib/ecore/Ecore.h @@ -1123,7 +1123,7 @@ EAPI void *ecore_main_win32_handler_del(Ecore_Win32_Handler *win32_handler); * For now only 1 core poller type is supported: ECORE_POLLER_CORE, the default * interval for ECORE_POLLER_CORE is 0.125(or 1/8th) second. * - * The creation of a poller is extremely simple and only required one line: + * The creation of a poller is extremely simple and only requires one line: * @code * ecore_poller_add(ECORE_POLLER_CORE, 1, my_poller_function, NULL); * @endcode