From 79f84bd447e7fe25f84b3182d51f2ec0e44b3abe Mon Sep 17 00:00:00 2001 From: redbrain Date: Sun, 8 Aug 2010 05:15:34 +0100 Subject: lots of bug fixes and cleanups to all components --- libgpython/include/gpython/garbage.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libgpython/include/gpython') diff --git a/libgpython/include/gpython/garbage.h b/libgpython/include/gpython/garbage.h index 8a216bc6719..b102b1daaec 100644 --- a/libgpython/include/gpython/garbage.h +++ b/libgpython/include/gpython/garbage.h @@ -49,7 +49,7 @@ extern void gpy_garbage_free_obj( gpy_object_state_t * ); #define gpy_garbage_mark_obj( x ) \ gpy_assert( x ); \ - debug("marking garbage <%p> ref count <%l>!\n", \ + debug("marking garbage <%p> ref count <%i>!\n", \ (void*) x, x->ref_count ); \ gpy_garbage_mark_obj__( x ); -- cgit v1.2.1