From 0fb80c303a2685372fe93ff23cecad9f7dfc67fe Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 10 May 2014 18:16:21 +0100 Subject: py: Compress a little the bytecode emitter structure. --- py/gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/gc.c') diff --git a/py/gc.c b/py/gc.c index b646e8cbd..87c458f82 100644 --- a/py/gc.c +++ b/py/gc.c @@ -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 -- cgit v1.2.3