summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2022-01-04 23:05:42 +0100
committerBadlop <badlop@process-one.net>2022-01-04 23:06:30 +0100
commitcc7ebb86b4c8582231753b2bef3d440c84d17878 (patch)
treefc81dd17f69a1476760f9085cb1f4f0d0b559e81 /src
parentWorkaround 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.erl2
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;