diff options
author | Henrik Nord <[email protected]> | 2011-03-31 11:46:49 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-03-31 11:47:58 +0200 |
commit | cbb97874da82c8d248be4314050ae48be64dd3a8 (patch) | |
tree | 4ae5dd79a839dc8e21cdbe48a3122992b7897a02 | |
parent | 7aeacdd52652fa044042629ff844120be64b534e (diff) | |
parent | deaaaa252863fbda315f7eeee37fcb903c36494e (diff) | |
download | otp-cbb97874da82c8d248be4314050ae48be64dd3a8.tar.gz otp-cbb97874da82c8d248be4314050ae48be64dd3a8.tar.bz2 otp-cbb97874da82c8d248be4314050ae48be64dd3a8.zip |
Merge branch 'mc/disjoint-plt-msg' into dev
* mc/disjoint-plt-msg:
Fix the name of an error function
OTP-9175
-rw-r--r-- | lib/dialyzer/src/dialyzer_plt.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dialyzer/src/dialyzer_plt.erl b/lib/dialyzer/src/dialyzer_plt.erl index 8d62f2c529..6033d7f17c 100644 --- a/lib/dialyzer/src/dialyzer_plt.erl +++ b/lib/dialyzer/src/dialyzer_plt.erl @@ -317,7 +317,7 @@ merge_plts_or_report_conflicts(PltFiles, Plts) -> Msg = io_lib:format("Could not merge PLTs since they are not disjoint\n" "The following files are included in more than one " "PLTs:\n~p\n", [ConfFiles]), - error(Msg) + plt_error(Msg) end. find_duplicates(List) -> |