diff options
author | Henrik Nord <[email protected]> | 2011-08-08 15:36:04 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-08-08 15:36:04 +0200 |
commit | 2f73f5ca35f600675ea9e46148bb8e9ddcdb4f7b (patch) | |
tree | 5093ddfdfca220209da7e52a9e6f40debb5b922b /erts | |
parent | b08528700ecb2c1b890617bcef84db6d61b5e931 (diff) | |
parent | 49f599b10882c7dc779d5b2bc06c4462f50209d1 (diff) | |
download | otp-2f73f5ca35f600675ea9e46148bb8e9ddcdb4f7b.tar.gz otp-2f73f5ca35f600675ea9e46148bb8e9ddcdb4f7b.tar.bz2 otp-2f73f5ca35f600675ea9e46148bb8e9ddcdb4f7b.zip |
Merge branch 'dev' into major
Diffstat (limited to 'erts')
-rw-r--r-- | erts/lib_src/common/erl_printf_format.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/lib_src/common/erl_printf_format.c b/erts/lib_src/common/erl_printf_format.c index fba3fd723c..473791dce4 100644 --- a/erts/lib_src/common/erl_printf_format.c +++ b/erts/lib_src/common/erl_printf_format.c @@ -388,7 +388,7 @@ static int fmt_double(fmtfn_t fn,void*arg,double val, max_size++; if (precision) max_size += precision; - else if (fmt && FMTF_alt) + else if (fmt & FMTF_alt) max_size++; break; case FMTC_E: @@ -402,7 +402,7 @@ static int fmt_double(fmtfn_t fn,void*arg,double val, max_size += 4; if (precision) max_size += precision; - else if (fmt && FMTF_alt) + else if (fmt & FMTF_alt) max_size++; aexp = exp >= 0 ? exp : -exp; if (aexp < 100) |