* continuations.c (scm_make_cont): Removed cast of size_t into
authorMikael Djurfeldt <djurfeldt@nada.kth.se>
Thu, 23 Mar 2000 13:06:36 +0000 (13:06 +0000)
committerMikael Djurfeldt <djurfeldt@nada.kth.se>
Thu, 23 Mar 2000 13:06:36 +0000 (13:06 +0000)
long.

libguile/continuations.c

index 08248ff..dd9b6e0 100644 (file)
@@ -102,8 +102,9 @@ scm_make_cont (SCM *answer)
   SCM_FLUSH_REGISTER_WINDOWS;
   j = scm_stack_size (SCM_BASE (scm_rootcont));
   SCM_SETJMPBUF (cont,
-            scm_must_malloc ((long) (sizeof (scm_contregs) + j * sizeof (SCM_STACKITEM)),
-                             s_cont));
+                scm_must_malloc (sizeof (scm_contregs)
+                                 + j * sizeof (SCM_STACKITEM),
+                                 s_cont));
   SCM_DYNENV (cont) = scm_dynwinds;
   SCM_THROW_VALUE (cont) = SCM_EOL;
   src = SCM_BASE (cont) = SCM_BASE (scm_rootcont);