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 <bryce@osg.samsung.com>

Subscribers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D4875
This commit is contained in:
Bryce Harrington 2017-05-12 14:41:49 +09:00 committed by Jean-Philippe Andre
parent f97920816d
commit 6c2826db03
1 changed files with 1 additions and 2 deletions

View File

@ -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;
}