summaryrefslogtreecommitdiff
path: root/src/rabbit_msg_store_gc.erl
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@rabbitmq.com>2010-10-19 12:54:06 +0100
committerMatthew Sackman <matthew@rabbitmq.com>2010-10-19 12:54:06 +0100
commit5f475f55fcb6b665a277ee1e38cf0de09cd3917d (patch)
treedf127fa46721b2cc975b0ba7682ecc7088c36853 /src/rabbit_msg_store_gc.erl
parentc88f6205491528e212845da8bf2d252f68a7d666 (diff)
downloadrabbitmq-server-5f475f55fcb6b665a277ee1e38cf0de09cd3917d.tar.gz
tuples can only be one-dimensional
Diffstat (limited to 'src/rabbit_msg_store_gc.erl')
-rw-r--r--src/rabbit_msg_store_gc.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rabbit_msg_store_gc.erl b/src/rabbit_msg_store_gc.erl
index 61c8b08f..0e277f8b 100644
--- a/src/rabbit_msg_store_gc.erl
+++ b/src/rabbit_msg_store_gc.erl
@@ -149,7 +149,8 @@ attempt_action(Action, Files,
end.
do_action(combine, [Source, Destination], MsgStoreState) ->
- {rabbit_msg_store:combine(Source, Destination, MsgStoreState), Source,
+ {rabbit_msg_store:combine(Source, Destination, MsgStoreState),
+ Source,
Destination};
do_action(delete, [File], MsgStoreState) ->
{rabbit_msg_store:delete_file(File, MsgStoreState), File, undefined}.