summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root>2008-11-03 15:25:12 +0000
committerroot <root>2008-11-03 15:25:12 +0000
commitba65c39933ea70641654c0fb4b76d6cc85dd534e (patch)
treebbacae8dd0869a5b28dba82d271601fae5125742
parentcfa51abba5be174106e78ce7e91fd2cec736d1c3 (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 909f396..1d9b5a8 100644
--- a/coro.c
+++ b/coro.c
@@ -329,7 +329,7 @@ void coro_create (coro_context *ctx,
/* we try to allow for both functions with and without frame pointers */
*--ctx->sp = (void *)coro_init;
{
- void **frame = ctx->sp - 1;
+ void *frame = ctx->sp - 1;
int i;
for (i = NUM_SAVED; i--; )
*--ctx->sp = frame;