summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@rabbitmq.com>2010-06-21 16:38:15 +0100
committerMatthew Sackman <matthew@rabbitmq.com>2010-06-21 16:38:15 +0100
commit9f15075dbfbef16537ba8a7c47e737f2ff2b749a (patch)
treeb95f6580a4f9227549cd8b09b34918105551597d
parent7d362473fc22c662cde3e7853ca3bcff3979ab4d (diff)
downloadrabbitmq-server-git-9f15075dbfbef16537ba8a7c47e737f2ff2b749a.tar.gz
Ensure that this macro doesn't accidentally cause unification with variables in scope
-rw-r--r--src/rabbit_queue_index.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_queue_index.erl b/src/rabbit_queue_index.erl
index c1054d85d0..9e970e2890 100644
--- a/src/rabbit_queue_index.erl
+++ b/src/rabbit_queue_index.erl
@@ -152,7 +152,7 @@
%% ---- misc ----
--define(PUB, {_Guid, _IsPersistent}).
+-define(PUB, {__Guid, __IsPersistent}).
-define(READ_MODE, [binary, raw, read, {read_ahead, ?SEGMENT_TOTAL_SIZE}]).