aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2017-06-07 09:48:08 +0200
committerDan Gudmundsson <[email protected]>2017-06-07 09:48:08 +0200
commit807c34117da12e0056cf4b4898830830da114e80 (patch)
tree035f4bb0b0667df91ffb5e5dadc41e55b5ecfbfd
parentc9f89024ff9e30f2ea346ce06d3ceeae5ec904ab (diff)
parent9802f78ba453f242e3f5bbeacd6f7fb7a822b8c0 (diff)
downloadotp-807c34117da12e0056cf4b4898830830da114e80.tar.gz
otp-807c34117da12e0056cf4b4898830830da114e80.tar.bz2
otp-807c34117da12e0056cf4b4898830830da114e80.zip
Merge branch 'dgud/fix-unicode-atom'
* dgud/fix-unicode-atom: mnesia: Print tables with ~ts to support unicode atoms
-rw-r--r--lib/mnesia/src/mnesia_controller.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mnesia/src/mnesia_controller.erl b/lib/mnesia/src/mnesia_controller.erl
index 17b47c059e..93a7e21f4e 100644
--- a/lib/mnesia/src/mnesia_controller.erl
+++ b/lib/mnesia/src/mnesia_controller.erl
@@ -1888,7 +1888,7 @@ info_format(Tab, Size, Mem, Media) ->
StrT = mnesia_lib:pad_name(atom_to_list(Tab), 15, []),
StrS = mnesia_lib:pad_name(integer_to_list(Size), 8, []),
StrM = mnesia_lib:pad_name(integer_to_list(Mem), 8, []),
- io:format("~s: with ~s records occupying ~s ~s~n",
+ io:format("~ts: with ~s records occupying ~s ~s~n",
[StrT, StrS, StrM, Media]).
%% Handle early arrived messages