diff options
-rw-r--r-- | src/rebar_prv_dialyzer.erl | 2 |
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). |