diff options
author | Cedric BAIL <cedric.bail@samsung.com> | 2013-03-12 16:33:33 +0900 |
---|---|---|
committer | Cedric BAIL <cedric.bail@samsung.com> | 2013-03-12 16:33:33 +0900 |
commit | cf2f191ff9f787993742ae0a091f100119fbf141 (patch) | |
tree | 3ec4d0ad11a91c878c2847964bf3d34e20782431 /src/lib/ecore | |
parent | 23c320dd34230771d169ed886f362a6db515eed1 (diff) |
ecore: fix typo.
Diffstat (limited to 'src/lib/ecore')
-rw-r--r-- | src/lib/ecore/ecore_coroutine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore/ecore_coroutine.c b/src/lib/ecore/ecore_coroutine.c index 1e88284295..b6fc362619 100644 --- a/src/lib/ecore/ecore_coroutine.c +++ b/src/lib/ecore/ecore_coroutine.c | |||
@@ -188,7 +188,7 @@ ecore_coroutine_add(int stack_size, Ecore_Coroutine_Cb func, void *data) | |||
188 | coro = malloc(sizeof (Ecore_Coroutine) + stack_size - 1); | 188 | coro = malloc(sizeof (Ecore_Coroutine) + stack_size - 1); |
189 | if (!coro) return NULL; | 189 | if (!coro) return NULL; |
190 | 190 | ||
191 | #ifdef USE_FIBERS | 191 | #ifndef USE_FIBERS |
192 | stack = coro->stack; | 192 | stack = coro->stack; |
193 | #endif | 193 | #endif |
194 | 194 | ||