diff options
| author | Matthias Radestock <matthias@lshift.net> | 2009-08-20 00:38:46 +0100 |
|---|---|---|
| committer | Matthias Radestock <matthias@lshift.net> | 2009-08-20 00:38:46 +0100 |
| commit | a0cd42787325be33f62c66705edb064cbb116db6 (patch) | |
| tree | e35197686b5bb57dcc3026de47e6f0adf931ea03 /src | |
| parent | c0acd6a76879f0979f7fe34dcc55a2396bd8feff (diff) | |
| download | rabbitmq-server-git-a0cd42787325be33f62c66705edb064cbb116db6.tar.gz | |
eliminate unused var warning
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_tests.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_tests.erl b/src/rabbit_tests.erl index e7aa97e5ed..8f278c2d03 100644 --- a/src/rabbit_tests.erl +++ b/src/rabbit_tests.erl @@ -184,7 +184,7 @@ test_simple_n_element_queue(N) -> passed. test_unfold() -> - {[], test} = rabbit_misc:unfold(fun (V) -> false end, test), + {[], test} = rabbit_misc:unfold(fun (_V) -> false end, test), List = lists:seq(2,20,2), {List, 0} = rabbit_misc:unfold(fun (0) -> false; (N) -> {true, N*2, N-1} |
