summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlexandru Scvortov <alexandru@rabbitmq.com>2010-08-25 21:11:28 +0100
committerAlexandru Scvortov <alexandru@rabbitmq.com>2010-08-25 21:11:28 +0100
commit2a1598e9adcce9aef5631cd772f16ae56d30cc1d (patch)
treee9e9078dff2ceb3ed223c3ec3e18d2e0c85d7166 /src
parentec420ff47884505b680ab167be4e206f7a281240 (diff)
downloadrabbitmq-server-git-2a1598e9adcce9aef5631cd772f16ae56d30cc1d.tar.gz
solve a warning
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_channel.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl
index f305194ab1..ae49b30127 100644
--- a/src/rabbit_channel.erl
+++ b/src/rabbit_channel.erl
@@ -287,7 +287,7 @@ handle_info({'EXIT', WriterPid, Reason = {writer, send_failed, _Error}},
{stop, normal, State};
handle_info({'EXIT', _Pid, Reason}, State) ->
{stop, Reason, State};
-handle_info({'DOWN', _MRef, process, QPid, Reason},
+handle_info({'DOWN', _MRef, process, QPid, _Reason},
State = #ch{qpid_to_msgs = QTM}) ->
case dict:find(QPid, QTM) of
{ok, Msgs} ->