Fix function signature

This commit is contained in:
Scott Shawcroft 2019-03-12 14:05:31 -07:00
parent 3f6713abc1
commit 911509c80c
No known key found for this signature in database
GPG Key ID: FD0EDC4B6C53CA59

View File

@ -184,7 +184,7 @@ void gc_init(void *start, void *end) {
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);
}
void gc_deinit() {
void gc_deinit(void) {
// Run any finalizers before we stop using the heap.
gc_sweep_all();