diff options
author | Hans Bolinder <[email protected]> | 2017-06-20 13:14:56 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2017-09-05 11:02:25 +0200 |
commit | f7d577d7baa0864ce49ee55a3b046390c6700bb7 (patch) | |
tree | 21a43c4e0c9fcf4af818a149a0c0e83f1795752b /lib/stdlib | |
parent | d9e56433f0aff84cae516486fdd7043de38f23fe (diff) | |
download | otp-f7d577d7baa0864ce49ee55a3b046390c6700bb7.tar.gz otp-f7d577d7baa0864ce49ee55a3b046390c6700bb7.tar.bz2 otp-f7d577d7baa0864ce49ee55a3b046390c6700bb7.zip |
stdlib: Improve handling of Unicode in escript
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/src/escript.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/escript.erl b/lib/stdlib/src/escript.erl index 2093916a7c..2b9d8ff65b 100644 --- a/lib/stdlib/src/escript.erl +++ b/lib/stdlib/src/escript.erl @@ -860,7 +860,7 @@ code_handler(Name, Args, Dict, File) -> %% io:format("Calling:~p~n",[{Mod,Name,Args}]), apply(Mod, Name, Args); error -> - io:format("Script does not export ~w/~w\n", [Name,Arity]), + io:format("Script does not export ~tw/~w\n", [Name,Arity]), my_halt(127) end end. |