Sfoglia il codice sorgente

Merge pull request #28 from brendanhay/master

Fix to compile on R13A
pull/29/head
Andrew Thompson 13 anni fa
parent
commit
9680638146
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/lager_trunc_io.erl

+ 1
- 1
src/lager_trunc_io.erl Vedi File

@ -283,7 +283,7 @@ alist([H|T], Max, #print_options{force_strings=true} = Options) when is_integer(
{L, Len} = alist(T, Max-1, Options),
{[H|L], Len + 1};
alist(_, _, #print_options{force_strings=true}) ->
error(badarg);
erlang:error(badarg);
alist(_L, _Max, _Options) ->
throw(unprintable).

Caricamento…
Annulla
Salva