diff options
author | Björn Gustavsson <[email protected]> | 2011-02-23 13:33:34 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-02-23 13:33:34 +0100 |
commit | 9726d9798b0c41ba2126e55e64c5913873116218 (patch) | |
tree | bbcff91b35d343b0bdd1a594bd8dc4d0cd35ace4 /lib/stdlib/test/supervisor_SUITE.erl | |
parent | c347415765f4e30e38e49f5bd369f48523ef935e (diff) | |
download | otp-9726d9798b0c41ba2126e55e64c5913873116218.tar.gz otp-9726d9798b0c41ba2126e55e64c5913873116218.tar.bz2 otp-9726d9798b0c41ba2126e55e64c5913873116218.zip |
stdlib tests: Eliminate some compiler warnings
Diffstat (limited to 'lib/stdlib/test/supervisor_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/supervisor_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/test/supervisor_SUITE.erl b/lib/stdlib/test/supervisor_SUITE.erl index 988e98aca4..8aed93ce12 100644 --- a/lib/stdlib/test/supervisor_SUITE.erl +++ b/lib/stdlib/test/supervisor_SUITE.erl @@ -1285,7 +1285,7 @@ count_children_memory(Config) when is_list(Config) -> Children = supervisor:which_children(sup_test), _Size2 = erlang:memory(processes_used), ChildCount = get_child_counts(sup_test), - Size3 = erlang:memory(processes_used), + _Size3 = erlang:memory(processes_used), [supervisor:start_child(sup_test, []) || _Ignore2 <- lists:seq(1,1000)], |