diff options
author | Henrik Nord <[email protected]> | 2012-12-10 15:01:50 +0100 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2012-12-10 15:01:54 +0100 |
commit | fc653d7a69b0d689c76e6f04f9f185701756c125 (patch) | |
tree | 9eb772e192729f57f7e8cac774e60b07aee0be7c | |
parent | 80d54455ab2eac751d3ff72b7022e24cef9c4a2a (diff) | |
parent | 6e8da51daf81fc4ce3aac0deef6548a3af34d9eb (diff) | |
download | otp-fc653d7a69b0d689c76e6f04f9f185701756c125.tar.gz otp-fc653d7a69b0d689c76e6f04f9f185701756c125.tar.bz2 otp-fc653d7a69b0d689c76e6f04f9f185701756c125.zip |
Merge branch 'sal/app_controller'
* sal/app_controller:
Fix printout of application crash message on startup
OTP-10620
-rw-r--r-- | lib/kernel/src/application_controller.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kernel/src/application_controller.erl b/lib/kernel/src/application_controller.erl index 68cd26ec10..75ce852001 100644 --- a/lib/kernel/src/application_controller.erl +++ b/lib/kernel/src/application_controller.erl @@ -1960,5 +1960,5 @@ to_string(Term) -> true -> Term; false -> - lists:flatten(io_lib:write(Term)) + lists:flatten(io_lib:format("~134217728p", [Term])) end. |