diff options
author | Badlop <badlop@process-one.net> | 2022-01-04 23:05:42 +0100 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2022-01-04 23:06:30 +0100 |
commit | cc7ebb86b4c8582231753b2bef3d440c84d17878 (patch) | |
tree | fc81dd17f69a1476760f9085cb1f4f0d0b559e81 /src | |
parent | Workaround to support rebar2 git tag "1.0" and rebar3 hex version "1.0.0" (diff) |
Fix Dialyzer, related to Luerl API update from 0.3 to 1.0
Diffstat (limited to 'src')
-rw-r--r-- | src/prosody2ejabberd.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prosody2ejabberd.erl b/src/prosody2ejabberd.erl index 3992a403..8f5c35f8 100644 --- a/src/prosody2ejabberd.erl +++ b/src/prosody2ejabberd.erl @@ -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; |