wingo pushed a commit to branch wip-whippet
in repository guile.

commit 68d495f0812f1d26905ddc09817c6d499a355d22
Author: Andy Wingo <wi...@pobox.com>
AuthorDate: Fri Apr 18 15:15:06 2025 +0200

    Adapt to Whippet changes
    
    * libguile/gc.c (scm_storage_prehistory): Adapt to new gc_init
    prototype.
---
 libguile/gc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libguile/gc.c b/libguile/gc.c
index 33cd09399..ad0794a9d 100644
--- a/libguile/gc.c
+++ b/libguile/gc.c
@@ -657,7 +657,7 @@ scm_storage_prehistory (void)
 #endif
 
   struct gc_mutator *mut;
-  if (!gc_init (options, NULL, &the_gc_heap, &mut,
+  if (!gc_init (options, gc_empty_stack_addr (), &the_gc_heap, &mut,
                 SCM_GC_EVENT_LISTENER, &the_gc_event_listener))
     {
       fprintf (stderr, "Failed to initialize GC\n");

Reply via email to