From 7bd2b04fea5649d77d796d58b7f4918fe0378ee5 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Fri, 11 May 2012 03:40:58 +0200 Subject: [PATCH] Minor --- src/hb-object-private.hh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/hb-object-private.hh b/src/hb-object-private.hh index 23c1a44d3..754dcfa5a 100644 --- a/src/hb-object-private.hh +++ b/src/hb-object-private.hh @@ -197,10 +197,12 @@ struct _hb_object_header_t { inline void trace (const char *function) const { if (unlikely (!this)) return; + /* XXX We cannot use DEBUG_MSG_FUNC here since that one currecntly only + * prints the class name and throughs away the template info. */ DEBUG_MSG (OBJECT, (void *) this, - "refcount=%d %s", - this ? ref_count.get_unsafe () : 0, - function); + "%s refcount=%d", + function, + this ? ref_count.get_unsafe () : 0); } };