diff options
| author | Damien George <damien.p.george@gmail.com> | 2015-01-12 22:34:38 +0000 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2015-01-12 22:34:38 +0000 |
| commit | abc1959e2c8170cc37d2e1fa1654f1266479d666 (patch) | |
| tree | 507831aceb537390763bb8886634c43a4dad79ad /py/gc.c | |
| parent | cd3420740909b3b6a2140b613b591b7556b417a2 (diff) | |
py, unix, lib: Allow to compile with -Wold-style-definition.
Diffstat (limited to 'py/gc.c')
| -rw-r--r-- | py/gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -649,7 +649,7 @@ void *gc_realloc(void *ptr_in, mp_uint_t n_bytes) { } #endif // Alternative gc_realloc impl -void gc_dump_info() { +void gc_dump_info(void) { gc_info_t info; gc_info(&info); printf("GC: total: " UINT_FMT ", used: " UINT_FMT ", free: " UINT_FMT "\n", info.total, info.used, info.free); |
