summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTim Watson <tim@rabbitmq.com>2012-12-07 13:15:38 +0000
committerTim Watson <tim@rabbitmq.com>2012-12-07 13:15:38 +0000
commit62b6fb9804b2c29b4583b69e11bb55fb40e0ecad (patch)
treed18eb81bf71246c3e25a1cfa47fe7a91f1572187 /src
parent3b39bfeee1e27ad1821c22bbc42a740744e9a42b (diff)
downloadrabbitmq-server-git-62b6fb9804b2c29b4583b69e11bb55fb40e0ecad.tar.gz
remove compiler warning
Diffstat (limited to 'src')
-rw-r--r--src/supervisor2.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/supervisor2.erl b/src/supervisor2.erl
index a1f758ffb8..89e787034a 100644
--- a/src/supervisor2.erl
+++ b/src/supervisor2.erl
@@ -688,7 +688,7 @@ handle_info({delayed_restart, {RestartType, Reason, Child}}, State) ->
{value, Child1} ->
{ok, NState} = do_restart(RestartType, Reason, Child1, State),
{noreply, NState};
- What ->
+ _What ->
{noreply, State}
end;