summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coro.c b/coro.c
index 84c29d6..722e33c 100644
--- a/coro.c
+++ b/coro.c
@@ -287,7 +287,7 @@ coro_create (coro_context *ctx, coro_func coro, void *arg, void *sptr, long ssiz
# elif CORO_ASM
- ctx->sp = (volatile void **)(ssize + (char *)sptr);
+ ctx->sp = (void **)(ssize + (char *)sptr);
*--ctx->sp = (void *)abort; /* needed for alignment only */
*--ctx->sp = (void *)coro_init;
ctx->sp -= NUM_SAVED;