diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_misc.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_misc.erl b/src/rabbit_misc.erl index 9ac6342b31..9762619f73 100644 --- a/src/rabbit_misc.erl +++ b/src/rabbit_misc.erl @@ -493,6 +493,6 @@ ceil(N) -> queue_fold(Fun, Init, Q) -> case queue:out(Q) of - {empty, _Q} -> Init; + {empty, _Q} -> Init; {{value, V}, Q1} -> queue_fold(Fun, Fun(V, Init), Q1) end. |
