Explorar el Código

Dialyzer insists on matching a return value

pull/316/head
Mark Allen hace 9 años
padre
commit
063d628549
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      src/lager_file_backend.erl

+ 2
- 1
src/lager_file_backend.erl Ver fichero

@ -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

Cargando…
Cancelar
Guardar