diff options
author | Hans Bolinder <[email protected]> | 2018-08-29 15:46:17 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2019-01-17 09:51:34 +0100 |
commit | 205ef4a2ee3dee26196a5a212e89b6b4839639cc (patch) | |
tree | 1b7468c483c1e13b74f84d59c6a584823ef1a5c3 /lib | |
parent | 8b21b2ef5c46f6a831beb9ee4445582c4558e8ba (diff) | |
download | otp-205ef4a2ee3dee26196a5a212e89b6b4839639cc.tar.gz otp-205ef4a2ee3dee26196a5a212e89b6b4839639cc.tar.bz2 otp-205ef4a2ee3dee26196a5a212e89b6b4839639cc.zip |
sasl: Adjust some calls to io:format()
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sasl/src/systools.erl | 6 | ||||
-rw-r--r-- | lib/sasl/src/systools_relup.erl | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/sasl/src/systools.erl b/lib/sasl/src/systools.erl index dd1a58c3c1..34eca6679f 100644 --- a/lib/sasl/src/systools.erl +++ b/lib/sasl/src/systools.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1996-2016. All Rights Reserved. +%% Copyright Ericsson AB 1996-2019. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -73,7 +73,7 @@ make_tar(RelName, Opt) -> script2boot(File) -> case systools_lib:file_term2binary(File ++ ".script", File ++ ".boot") of {error,Error} -> - io:format(systools_make:format_error(Error)), + io:format("~ts", [systools_make:format_error(Error)]), error; _ -> ok @@ -84,7 +84,7 @@ script2boot(File, Output0, _Opt) -> Output = Output0++".boot", case systools_lib:file_term2binary(Input, Output) of {error,Error} -> - io:format(systools_make:format_error(Error)), + io:format("~ts", [systools_make:format_error(Error)]), error; _ -> ok diff --git a/lib/sasl/src/systools_relup.erl b/lib/sasl/src/systools_relup.erl index e836d57670..5f1176ec69 100644 --- a/lib/sasl/src/systools_relup.erl +++ b/lib/sasl/src/systools_relup.erl @@ -587,7 +587,7 @@ default(warnings_as_errors) -> false. print_error({error, Mod, Error}) -> S = apply(Mod, format_error, [Error]), - io:format(S, []); + io:format("~ts", [S]); print_error(Other) -> io:format("Error: ~tp~n", [Other]). |