From 5f101dfe5a9f4322fd888da8b85412f01c714590 Mon Sep 17 00:00:00 2001 From: wlux Date: Sat, 30 Apr 2011 09:09:35 +0000 Subject: [PATCH] Fix incorrect format specifier in debug printf statement. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/libobjc/trunk@32960 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 5 +++++ init.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 756e230..9a5495e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-04-30 Wolfgang Lux + + * init.c (__objc_tree_insert_class): Fix incorrect format + specifier in debug printf statement. + 2011-04-30 Wolfgang Lux * thr-posix.c (__objc_thread_detach, __objc_thread_id): Replace diff --git a/init.c b/init.c index 9d47ce2..714eec2 100644 --- a/init.c +++ b/init.c @@ -188,7 +188,7 @@ create_tree_of_subclasses_inherited_from (Class bottom_class, Class upper) static objc_class_tree * __objc_tree_insert_class (objc_class_tree *tree, Class class) { - DEBUG_PRINTF ("__objc_tree_insert_class: tree = %x, class = %s\n", + DEBUG_PRINTF ("__objc_tree_insert_class: tree = %p, class = %s\n", tree, class->name); if (tree == NULL)