Fix debug build
This commit is contained in:
parent
12b27ed91d
commit
d5943407a4
|
@ -125,7 +125,7 @@ struct Null <Type> \
|
||||||
HB_STMT_START { \
|
HB_STMT_START { \
|
||||||
if (sanitize_depth < HB_DEBUG_SANITIZE) \
|
if (sanitize_depth < HB_DEBUG_SANITIZE) \
|
||||||
fprintf (stderr, "SANITIZE(%p) %-*d-> %s\n", \
|
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, \
|
sanitize_depth, sanitize_depth, \
|
||||||
__PRETTY_FUNCTION__); \
|
__PRETTY_FUNCTION__); \
|
||||||
} HB_STMT_END
|
} HB_STMT_END
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
HB_STMT_START { \
|
HB_STMT_START { \
|
||||||
if (apply_depth < HB_DEBUG_APPLY) \
|
if (apply_depth < HB_DEBUG_APPLY) \
|
||||||
fprintf (stderr, "APPLY(%p) %-*d-> %s\n", \
|
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, \
|
apply_depth, apply_depth, \
|
||||||
__PRETTY_FUNCTION__); \
|
__PRETTY_FUNCTION__); \
|
||||||
} HB_STMT_END
|
} HB_STMT_END
|
||||||
|
|
Loading…
Reference in New Issue