diff options
author | Lukas Larsson <[email protected]> | 2011-12-06 14:32:05 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-12-08 15:55:02 +0100 |
commit | 873bdb7fee3148c707ab85ad8e71c1333ec8b701 (patch) | |
tree | 36f0d56652466ef6c85a623223b567846b9160e8 /lib | |
parent | b74da411f8dc99039faf33c0870d671c36dc402b (diff) | |
download | otp-873bdb7fee3148c707ab85ad8e71c1333ec8b701.tar.gz otp-873bdb7fee3148c707ab85ad8e71c1333ec8b701.tar.bz2 otp-873bdb7fee3148c707ab85ad8e71c1333ec8b701.zip |
Save +M<S>t data as true or false, not the number
OTP-7775
Diffstat (limited to 'lib')
-rw-r--r-- | lib/runtime_tools/src/erts_alloc_config.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/runtime_tools/src/erts_alloc_config.erl b/lib/runtime_tools/src/erts_alloc_config.erl index 1a57c94443..6c11fe8581 100644 --- a/lib/runtime_tools/src/erts_alloc_config.erl +++ b/lib/runtime_tools/src/erts_alloc_config.erl @@ -472,7 +472,7 @@ au_conf_alloc(#conf{format_to = FTO} = Conf, _ -> fc(FTO, "~p instances used.", [Insts]), - format(FTO, " +M~ct ~p~n", [alloc_char(A), Insts]) + format(FTO, " +M~ct true~n", [alloc_char(A)]) end, mmbcs(Conf, Alc), smbcs_lmbcs_mmmbc(Conf, Alc), |