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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/coroutine/ucontext/Context.c b/coroutine/ucontext/Context.c
index 2dc3f478e8..5d728d554d 100644
--- a/coroutine/ucontext/Context.c
+++ b/coroutine/ucontext/Context.c
@@ -11,11 +11,12 @@
#if defined(__sun) && !defined(__EXTENSIONS__)
#define __EXTENSIONS__
#endif
+
#include "Context.h"
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);