summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root>2008-11-08 13:32:18 +0000
committerroot <root>2008-11-08 13:32:18 +0000
commitdb4c230aa2d9062ce3d67548396dac715497e15a (patch)
tree0c4ee6b2bd51d4097ae65bf4102fbbd97612b3ec
parentce5dfff9ddefbf677d0362d47865c271548e69b3 (diff)
*** empty log message ***
-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;