jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=6c2826db03e98e215e890d1fb227ccf2efe0c232
commit 6c2826db03e98e215e890d1fb227ccf2efe0c232 Author: Bryce Harrington <[email protected]> Date: Fri May 12 14:41:49 2017 +0900 evas: Fix two whitespace errors Summary: Removes extraneous newline, and fixes the indentation of the while statement's sub-clause (which looked like a code error at first glance). Signed-off-by: Bryce Harrington <[email protected]> Subscribers: cedric, jpeg Differential Revision: https://phab.enlightenment.org/D4875 --- src/lib/evas/canvas/evas_async_events.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/evas/canvas/evas_async_events.c b/src/lib/evas/canvas/evas_async_events.c index 047b2eb..a903644 100644 --- a/src/lib/evas/canvas/evas_async_events.c +++ b/src/lib/evas/canvas/evas_async_events.c @@ -130,7 +130,6 @@ evas_async_events_init(void) _read_error = EINA_FALSE; _write_error = EINA_FALSE; - eina_spinlock_new(&async_lock); eina_inarray_step_set(&async_queue, sizeof (Eina_Inarray), sizeof (Evas_Event_Async), 16); @@ -197,7 +196,7 @@ evas_async_events_process(void) _event_count = 0; while (ecore_pipe_wait(_async_pipe, 1, 0.0)) - count = _event_count; + count = _event_count; return count; } --
