diff options
author | Maria Christakis <[email protected]> | 2011-03-29 20:07:16 +0300 |
---|---|---|
committer | Maria Christakis <[email protected]> | 2011-03-29 20:07:16 +0300 |
commit | deaaaa252863fbda315f7eeee37fcb903c36494e (patch) | |
tree | b5f69e500020dbad2f112b9ed69c15f5c92e2b7e /lib/dialyzer | |
parent | e36547e3a192b40437be01d3323655b9d257cdd6 (diff) | |
download | otp-deaaaa252863fbda315f7eeee37fcb903c36494e.tar.gz otp-deaaaa252863fbda315f7eeee37fcb903c36494e.tar.bz2 otp-deaaaa252863fbda315f7eeee37fcb903c36494e.zip |
Fix the name of an error function
Diffstat (limited to 'lib/dialyzer')
-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) -> |