commit | 8b3a7c2237d74b84eb7ff9fe4b6cd5888545f2af | [log] [tgz] |
---|---|---|
author | Damien <damien.p.george@gmail.com> | Wed Oct 23 20:20:17 2013 +0100 |
committer | Damien <damien.p.george@gmail.com> | Wed Oct 23 20:20:17 2013 +0100 |
tree | 876d0481e9c06c2d280dd3e602335a3aad977915 | |
parent | 94186c82396dee2f70785bf9e241780f29275870 [diff] [blame] |
Fix func decls with no arguments: () -> (void).
diff --git a/py/malloc.c b/py/malloc.c index 8775f68..2f8b5f7 100644 --- a/py/malloc.c +++ b/py/malloc.c
@@ -51,6 +51,6 @@ return ptr; } -int m_get_total_bytes_allocated() { +int m_get_total_bytes_allocated(void) { return total_bytes_allocated; }