Skip to content

Commit

Permalink
Merge pull request #163 from ariel-anieli/issue-138-rumany-typos
Browse files Browse the repository at this point in the history
runmany_wrap/2 didn't call Fun: missing parens
  • Loading branch information
ferd authored Dec 10, 2023
2 parents eeb25f4 + 378b885 commit 04c0d4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ec_plists.erl
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ cluster_runmany(_, _, [_Non|_Empty], []=_Nodes, []=_Running, _) ->
-ifdef(fun_stacktrace).
runmany_wrap(Fun, Parent) ->
try
Fun
Fun()
catch
exit:siblingdied ->
ok;
Expand All @@ -889,7 +889,7 @@ runmany_wrap(Fun, Parent) ->
-else.
runmany_wrap(Fun, Parent) ->
try
Fun
Fun()
catch
exit:siblingdied ->
ok;
Expand Down

0 comments on commit 04c0d4f

Please sign in to comment.