summaryrefslogtreecommitdiff
path: root/libgpython/include/gpython
diff options
context:
space:
mode:
authorredbrain <redbrain@crules.org>2010-08-08 05:15:34 +0100
committerredbrain <redbrain@crules.org>2010-08-08 05:15:34 +0100
commit79f84bd447e7fe25f84b3182d51f2ec0e44b3abe (patch)
tree1fd4ff42ef545d53af25554dea62d629f2c7dd7b /libgpython/include/gpython
parent03257816f4573742aea851b18722dda26184334b (diff)
downloadgcc-79f84bd447e7fe25f84b3182d51f2ec0e44b3abe.tar.gz
lots of bug fixes and cleanups to all components
Diffstat (limited to 'libgpython/include/gpython')
-rw-r--r--libgpython/include/gpython/garbage.h2
1 files changed, 1 insertions, 1 deletions
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 );