diff options
author | Damien George <damien.p.george@gmail.com> | 2014-05-10 18:16:21 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-05-10 18:16:21 +0100 |
commit | 0fb80c303a2685372fe93ff23cecad9f7dfc67fe (patch) | |
tree | aee53be5aeede7dff6a27e21a1192cd9f44046a8 /py/gc.c | |
parent | 9597771fe4c0aa42f20514d7315e706bf6dc51cf (diff) |
py: Compress a little the bytecode emitter structure.
Diffstat (limited to 'py/gc.c')
-rw-r--r-- | py/gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -113,7 +113,7 @@ STATIC machine_uint_t gc_lock_depth; void gc_init(void *start, void *end) { // align end pointer on block boundary end = (void*)((machine_uint_t)end & (~(BYTES_PER_BLOCK - 1))); - DEBUG_printf("Initializing GC heap: %p..%p = %ld bytes\n", start, end, end - start); + DEBUG_printf("Initializing GC heap: %p..%p = " UINT_FMT " bytes\n", start, end, end - start); // calculate parameters for GC (T=total, A=alloc table, F=finaliser table, P=pool; all in bytes): // T = A + F + P |