diff options
| author | Michael Klishin <mklishin@pivotal.io> | 2015-07-03 17:39:43 +0300 |
|---|---|---|
| committer | Michael Klishin <mklishin@pivotal.io> | 2015-07-03 17:39:43 +0300 |
| commit | e4b7eecf6f643367dd99fd69138a587a128c6e9e (patch) | |
| tree | 09093dc542e6dfba19c47f1884e20b366d19ff14 /src | |
| parent | b99adec0c1b81327fc27791b5d350c0f77d6298c (diff) | |
| download | rabbitmq-server-git-e4b7eecf6f643367dd99fd69138a587a128c6e9e.tar.gz | |
Squash unused variable warnings
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_control_main.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_control_main.erl b/src/rabbit_control_main.erl index ec30d912c8..fe0563bbc7 100644 --- a/src/rabbit_control_main.erl +++ b/src/rabbit_control_main.erl @@ -488,7 +488,7 @@ action(Command, Node, Args, Opts, Inform) -> %% the default timeout. action(Command, Node, Args, Opts, Inform, ?RPC_TIMEOUT). -action(purge_queue, Node, [], Opts, Inform, Timeout) -> +action(purge_queue, _Node, [], _Opts, _Inform, _Timeout) -> {error, "purge_queue takes queue name as an argument"}; action(purge_queue, Node, [Q], Opts, Inform, Timeout) -> |
