1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

Fix optdebug warnings

This commit is contained in:
Andy Wingo 2023-10-18 15:13:27 +02:00
parent 9ce8ee2921
commit 8aa2036331
2 changed files with 7 additions and 7 deletions

View file

@ -1410,7 +1410,7 @@ static void mark_space_clear_remembered_set(struct mark_space *space) {
void gc_write_barrier_extern(struct gc_ref obj, size_t obj_size,
struct gc_edge edge, struct gc_ref new_val) {
GC_ASSERT(size > gc_allocator_large_threshold());
GC_ASSERT(obj_size > gc_allocator_large_threshold());
gc_object_set_remembered(obj);
}