aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_printf_term.c
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2014-12-16 15:22:07 +0100
committerSverker Eriksson <[email protected]>2014-12-16 15:22:07 +0100
commitc4228fb7cb3bd651dd44f8dfd9a4f91f41d5cc2c (patch)
treee11aab77ae5383ae16f99cff9003208f32ceb15f /erts/emulator/beam/erl_printf_term.c
parentbe779dbb921e2f99d1d6f626d32e34053a0635d9 (diff)
parentb3e52c026ce4920e1a4e36ef98e5de94666e91ef (diff)
downloadotp-c4228fb7cb3bd651dd44f8dfd9a4f91f41d5cc2c.tar.gz
otp-c4228fb7cb3bd651dd44f8dfd9a4f91f41d5cc2c.tar.bz2
otp-c4228fb7cb3bd651dd44f8dfd9a4f91f41d5cc2c.zip
Merge branch 'sverk/ct-assert'
* sverk/ct-assert: erts: Add compile time assert ERTS_CT_ASSERT
Diffstat (limited to 'erts/emulator/beam/erl_printf_term.c')
-rw-r--r--erts/emulator/beam/erl_printf_term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_printf_term.c b/erts/emulator/beam/erl_printf_term.c
index 74e38c13df..c982dc2080 100644
--- a/erts/emulator/beam/erl_printf_term.c
+++ b/erts/emulator/beam/erl_printf_term.c
@@ -594,7 +594,7 @@ erts_printf_term(fmtfn_t fn, void* arg, ErlPfEterm term, long precision,
ErlPfEterm* term_base)
{
int res;
- ASSERT(sizeof(ErlPfEterm) == sizeof(Eterm));
+ ERTS_CT_ASSERT(sizeof(ErlPfEterm) == sizeof(Eterm));
res = print_term(fn, arg, (Eterm)term, &precision, (Eterm*)term_base);
if (res < 0)