summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2010-06-18 19:47:45 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2010-06-18 19:47:45 +0100
commit9c333ee78860c47620971d54aa443b412ffd0071 (patch)
treeab7d20d6d262da13202da7066f843839498421c3
parentb39d55b09b96e3f45732d7d1dfa2853d6846582b (diff)
downloadrabbitmq-server-git-9c333ee78860c47620971d54aa443b412ffd0071.tar.gz
cosmetic
-rw-r--r--src/rabbit_variable_queue.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rabbit_variable_queue.erl b/src/rabbit_variable_queue.erl
index c0c7c69e9a..f201210b57 100644
--- a/src/rabbit_variable_queue.erl
+++ b/src/rabbit_variable_queue.erl
@@ -1235,8 +1235,8 @@ limit_q3_ram_index(Reduction, State) ->
{Reduction, State}.
limit_ram_index(MapFoldFilterFun, Q, Reduction,
- State = #vqstate { ram_index_count = RamIndexCount,
- index_state = IndexState }) ->
+ State = #vqstate { index_state = IndexState,
+ ram_index_count = RamIndexCount }) ->
{Qa, {Reduction1, IndexState1}} =
MapFoldFilterFun(
fun erlang:'not'/1,
@@ -1348,8 +1348,8 @@ maybe_push_alphas_to_betas(Generator, Consumer, Q, State) ->
push_betas_to_deltas(State = #vqstate { q2 = Q2,
delta = Delta,
q3 = Q3,
- ram_index_count = RamIndexCount,
- index_state = IndexState }) ->
+ index_state = IndexState,
+ ram_index_count = RamIndexCount }) ->
{Delta1, Q2a, RamIndexCount1, IndexState1} =
push_betas_to_deltas(fun (Q2MinSeqId) -> Q2MinSeqId end,
fun bpqueue:out/1, Q2,