Skip to content

Commit 25e0a6e

Browse files
author
David R. MacIver
committed
vertical alignment of -> in queue_fold
1 parent 6cb2ca7 commit 25e0a6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rabbit_misc.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,6 @@ ceil(N) ->
493493

494494
queue_fold(Fun, Init, Q) ->
495495
case queue:out(Q) of
496-
{empty, _Q} -> Init;
496+
{empty, _Q} -> Init;
497497
{{value, V}, Q1} -> queue_fold(Fun, Fun(V, Init), Q1)
498498
end.

0 commit comments

Comments
 (0)