diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2019-03-12 14:05:31 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2019-03-12 14:05:31 -0700 |
| commit | 911509c80c0767bed81a4a3757c7691af9be19ea (patch) | |
| tree | 841c5e5240ba81288fbd1e8b03e85c73b2e4ea88 /py | |
| parent | 3f6713abc1d7de9ee4f0c255c986207e9efef914 (diff) | |
Fix function signature
Diffstat (limited to 'py')
| -rwxr-xr-x | py/gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(); |
