Fix debug build

This commit is contained in:
Behdad Esfahbod 2010-04-19 02:27:56 -04:00
parent 12b27ed91d
commit d5943407a4
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ struct Null <Type> \
HB_STMT_START { \
if (sanitize_depth < HB_DEBUG_SANITIZE) \
fprintf (stderr, "SANITIZE(%p) %-*d-> %s\n", \
(CONST_CHARP (this) == NullPool) ? 0 : this, \
(CONST_CHARP (this) == CONST_CHARP (&NullPool)) ? 0 : this, \
sanitize_depth, sanitize_depth, \
__PRETTY_FUNCTION__); \
} HB_STMT_END

View File

@ -44,7 +44,7 @@
HB_STMT_START { \
if (apply_depth < HB_DEBUG_APPLY) \
fprintf (stderr, "APPLY(%p) %-*d-> %s\n", \
(CONST_CHARP (this) == NullPool) ? 0 : this, \
(CONST_CHARP (this) == CONST_CHARP (&NullPool)) ? 0 : this, \
apply_depth, apply_depth, \
__PRETTY_FUNCTION__); \
} HB_STMT_END