summaryrefslogtreecommitdiff
path: root/py
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2019-03-12 14:05:31 -0700
committerScott Shawcroft <scott@tannewt.org>2019-03-12 14:05:31 -0700
commit911509c80c0767bed81a4a3757c7691af9be19ea (patch)
tree841c5e5240ba81288fbd1e8b03e85c73b2e4ea88 /py
parent3f6713abc1d7de9ee4f0c255c986207e9efef914 (diff)
Fix function signature
Diffstat (limited to 'py')
-rwxr-xr-xpy/gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/gc.c b/py/gc.c
index e0b77c4cf..81e609730 100755
--- a/py/gc.c
+++ b/py/gc.c
@@ -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();