ecore: fix typo.

This commit is contained in:
Cedric BAIL 2013-03-12 16:33:33 +09:00
parent 23c320dd34
commit cf2f191ff9
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ ecore_coroutine_add(int stack_size, Ecore_Coroutine_Cb func, void *data)
coro = malloc(sizeof (Ecore_Coroutine) + stack_size - 1);
if (!coro) return NULL;
#ifdef USE_FIBERS
#ifndef USE_FIBERS
stack = coro->stack;
#endif