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

commit c51a48eae8b76a1985b7eb830fa25378689947fc
Author: Andy Wingo <wi...@igalia.com>
AuthorDate: Fri Mar 14 09:15:03 2025 +0100

    Fix prototype of copy_space_add_to_allocation_counter
---
 src/copy-space.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/copy-space.h b/src/copy-space.h
index 19b00e5fa..7f262c221 100644
--- a/src/copy-space.h
+++ b/src/copy-space.h
@@ -581,7 +581,7 @@ copy_space_can_allocate(struct copy_space *space, size_t 
bytes) {
 
 static void
 copy_space_add_to_allocation_counter(struct copy_space *space,
-                                     uintptr_t *counter) {
+                                     uint64_t *counter) {
   *counter += space->allocated_bytes - space->allocated_bytes_at_last_gc;
 }
 

Reply via email to