Skip to content

Commit 911509c

Browse files
committed
Fix function signature
1 parent 3f6713a commit 911509c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/gc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ void gc_init(void *start, void *end) {
184184
DEBUG_printf(" pool at %p, length " UINT_FMT " bytes, " UINT_FMT " blocks\n", MP_STATE_MEM(gc_pool_start), gc_pool_block_len * BYTES_PER_BLOCK, gc_pool_block_len);
185185
}
186186

187-
void gc_deinit() {
187+
void gc_deinit(void) {
188188
// Run any finalizers before we stop using the heap.
189189
gc_sweep_all();
190190

0 commit comments

Comments
 (0)