eio: fix poll backend

it seems that this should have been a pop call, not the function
pointer. This key eina_array_pop is never used. Nor would the array get
smaller, so i assume this should be a pop call.

Differential Revision: https://phab.enlightenment.org/D6814
This commit is contained in:
Marcel Hollerbach 2018-08-12 10:21:19 +02:00
parent 7685654d76
commit c77ba1672e
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ _eio_monitor_fallback_heavy_cb(void *data, Ecore_Thread *thread)
ecore_thread_main_loop_end();
while (eina_array_count(arr))
eina_hash_del_by_key(backend->children, eina_array_pop);
eina_hash_del_by_key(backend->children, eina_array_pop(arr));
eina_array_free(arr);
eina_iterator_free(it);
}