Fix Dialyzer, related to Luerl API update from 0.3 to 1.0

This commit is contained in:
Badlop 2022-01-04 23:05:42 +01:00
parent 79ddde3040
commit cc7ebb86b4
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ eval_file(Path) ->
case luerl:eval(NewData, State1) of
{ok, _} = Res ->
Res;
{error, Why} = Err ->
{error, Why, _} = Err ->
?ERROR_MSG("Failed to eval ~ts: ~p", [Path, Why]),
Err
end;