summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@rabbitmq.com>2010-08-03 14:56:53 +0100
committerMatthew Sackman <matthew@rabbitmq.com>2010-08-03 14:56:53 +0100
commit414630713ccc2af7187fa7608e690a3a29881243 (patch)
tree0a72b2009666dd625f7f4e02c5045c8326225f94
parentfccf1ec9d887560b2a690b77aed86aab3663feec (diff)
downloadrabbitmq-server-bug23048.tar.gz
Correct missing _ prefixbug23048
-rw-r--r--src/rabbit_exchange.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_exchange.erl b/src/rabbit_exchange.erl
index 4fb5d329..8e3d529a 100644
--- a/src/rabbit_exchange.erl
+++ b/src/rabbit_exchange.erl
@@ -216,7 +216,7 @@ check_type(TypeBin) ->
{error, not_found} -> rabbit_misc:protocol_error(
command_invalid,
"invalid exchange type '~s'", [T]);
- {ok, Module} -> T
+ {ok, _Module} -> T
end
end.