* root.c (cwdr_outer_body): Bugfix: Pass `c' instead of `&c' to
authorMarius Vollmer <mvo@zagadka.de>
Thu, 3 Jul 1997 15:22:59 +0000 (15:22 +0000)
committerMarius Vollmer <mvo@zagadka.de>
Thu, 3 Jul 1997 15:22:59 +0000 (15:22 +0000)
scm_internal_catch.

libguile/root.c

index 5d9cbc2..910ee31 100644 (file)
@@ -224,7 +224,7 @@ cwdr_outer_body (void *data, SCM jmpbuf)
   struct cwdr_body_data *c = (struct cwdr_body_data *) data;
 
   return scm_internal_catch (SCM_BOOL_T,
-                            cwdr_inner_body, &c,
+                            cwdr_inner_body, c,
                             scm_handle_by_proc, &c->handler);
 }