diff options
| author | Matthias Radestock <matthias@rabbitmq.com> | 2013-01-13 10:21:13 +0000 |
|---|---|---|
| committer | Matthias Radestock <matthias@rabbitmq.com> | 2013-01-13 10:21:13 +0000 |
| commit | 5ac7b28855c59a3e10667f372198ccd90a2105b8 (patch) | |
| tree | ad22af42fb528a3db2f85cdd69ceb0e0a29b705f /src | |
| parent | 1bae55aeb6b8222b89649809e235c7edbdbcf223 (diff) | |
| download | rabbitmq-server-git-5ac7b28855c59a3e10667f372198ccd90a2105b8.tar.gz | |
cosmetic
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_variable_queue.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_variable_queue.erl b/src/rabbit_variable_queue.erl index dcaaa5ed60..d3147999a5 100644 --- a/src/rabbit_variable_queue.erl +++ b/src/rabbit_variable_queue.erl @@ -1473,8 +1473,8 @@ next({delta, Delta, [M | Rest], State}, IndexState) -> next({Key, Q, State}, IndexState) -> case ?QUEUE:out(Q) of {empty, _Q} -> next(istate(Key, State), IndexState); - {{value, MsgStatus}, QN} -> {value, MsgStatus, {Key, QN, State}, - IndexState} + {{value, MsgStatus}, QN} -> Next = {Key, QN, State}, + {value, MsgStatus, Next, IndexState} end. ifold(Fun, Acc, It, State = #vqstate{index_state = IndexState}) -> |
