summaryrefslogtreecommitdiff
path: root/src/rebar_prv_dialyzer.erl
diff options
context:
space:
mode:
authorJames Fish <james@fishcakez.com>2015-02-07 22:26:34 +0000
committerJames Fish <james@fishcakez.com>2015-02-07 22:26:34 +0000
commit027b0f008ba47a68a02b10e4e33bc20140deb6e8 (patch)
tree4da91b0745e6c82ff33db9ab067478bbe1b3482c /src/rebar_prv_dialyzer.erl
parente533e5d7053cd53597b2a4816ff244a0764ae3cf (diff)
Fix dialyzer plt checking typo
Diffstat (limited to 'src/rebar_prv_dialyzer.erl')
-rw-r--r--src/rebar_prv_dialyzer.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_dialyzer.erl b/src/rebar_prv_dialyzer.erl
index 7783738..e4c021d 100644
--- a/src/rebar_prv_dialyzer.erl
+++ b/src/rebar_prv_dialyzer.erl
@@ -267,7 +267,7 @@ remove_plt(State, Plt, Files) ->
run_plt(State, Plt, plt_remove, Files).
check_plt(State, _Plt, []) ->
- {o, State};
+ {0, State};
check_plt(State, Plt, Files) ->
?INFO("Checking ~b files in ~p...", [length(Files), Plt]),
run_plt(State, Plt, plt_check, Files).