aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src
diff options
context:
space:
mode:
authorBruce Yinhe <[email protected]>2014-07-07 11:34:04 +0200
committerBruce Yinhe <[email protected]>2014-07-07 11:34:31 +0200
commit4a1ffc3b3666436a92532e242bde9f5b67902469 (patch)
tree4741c5a0c5f0e3ffab994125889030da59b807d3 /lib/stdlib/src
parent98c5cdbe60b6d743ad461b651a586c6f3a502ba9 (diff)
parenta10a7979887403ea61c30155cef18aa7324420a6 (diff)
downloadotp-4a1ffc3b3666436a92532e242bde9f5b67902469.tar.gz
otp-4a1ffc3b3666436a92532e242bde9f5b67902469.tar.bz2
otp-4a1ffc3b3666436a92532e242bde9f5b67902469.zip
Merge branch 'nox/io_lib_format-width-too-small' into maint
* nox/io_lib_format-width-too-small: Properly handle fields too short in io_lib_format OTP-12041
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r--lib/stdlib/src/io_lib_format.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/io_lib_format.erl b/lib/stdlib/src/io_lib_format.erl
index 56e15a17ec..89ae6fb187 100644
--- a/lib/stdlib/src/io_lib_format.erl
+++ b/lib/stdlib/src/io_lib_format.erl
@@ -255,7 +255,7 @@ term(T, none, _Adj, none, _Pad) -> T;
term(T, none, Adj, P, Pad) -> term(T, P, Adj, P, Pad);
term(T, F, Adj, P0, Pad) ->
L = lists:flatlength(T),
- P = case P0 of none -> erlang:min(L, F); _ -> P0 end,
+ P = erlang:min(L, case P0 of none -> F; _ -> min(P0, F) end),
if
L > P ->
adjust(chars($*, P), chars(Pad, F-P), Adj);