1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

Fix prototype of copy_space_add_to_allocation_counter

This commit is contained in:
Andy Wingo 2025-03-14 09:15:03 +01:00
parent 0cff6ffba4
commit c51a48eae8

View file

@ -581,7 +581,7 @@ copy_space_can_allocate(struct copy_space *space, size_t bytes) {
static void static void
copy_space_add_to_allocation_counter(struct copy_space *space, 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; *counter += space->allocated_bytes - space->allocated_bytes_at_last_gc;
} }