Procházet zdrojové kódy

Dialyzer insists on matching a return value

pull/316/head
Mark Allen před 9 roky
rodič
revize
063d628549
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      src/lager_file_backend.erl

+ 2
- 1
src/lager_file_backend.erl Zobrazit soubor

@ -186,7 +186,8 @@ handle_info(_Info, State) ->
%% @private
terminate(_Reason, State) ->
close_file(State),
%% leaving this function call unmatched makes dialyzer cranky
_ = close_file(State),
ok.
%% @private

Načítá se…
Zrušit
Uložit