summaryrefslogtreecommitdiff
path: root/coroutine/ucontext/Context.c
diff options
context:
space:
mode:
Diffstat (limited to 'coroutine/ucontext/Context.c')
-rw-r--r--coroutine/ucontext/Context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coroutine/ucontext/Context.c b/coroutine/ucontext/Context.c
index 2dc3f478e8..9ba76ee628 100644
--- a/coroutine/ucontext/Context.c
+++ b/coroutine/ucontext/Context.c
@@ -15,7 +15,7 @@
void coroutine_trampoline(void * _start, void * _context)
{
- coroutine_start start = _start;
+ coroutine_start start = (coroutine_start)_start;
struct coroutine_context * context = _context;
start(context->from, context);