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
main
wlux 15 years ago
parent 5e3ef08b72
commit 5f101dfe5a

@ -1,3 +1,8 @@
2011-04-30 Wolfgang Lux <wolfgang.lux@gmail.com>
* init.c (__objc_tree_insert_class): Fix incorrect format
specifier in debug printf statement.
2011-04-30 Wolfgang Lux <wolfgang.lux@gmail.com>
* thr-posix.c (__objc_thread_detach, __objc_thread_id): Replace

@ -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)

Loading…
Cancel
Save