aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/trace_SUITE.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2017-05-17 11:43:11 +0200
committerBjörn Gustavsson <[email protected]>2017-05-17 11:43:11 +0200
commita1956797340a09cdf35d60cc6ccf255c9173d3f3 (patch)
tree672ba5f730ab4c44d312f1db0457c39733888495 /erts/emulator/test/trace_SUITE.erl
parente7cdadc78c91c457d66e5e63fd4702ad47f2fdaa (diff)
downloadotp-a1956797340a09cdf35d60cc6ccf255c9173d3f3.tar.gz
otp-a1956797340a09cdf35d60cc6ccf255c9173d3f3.tar.bz2
otp-a1956797340a09cdf35d60cc6ccf255c9173d3f3.zip
Eliminate warning for variable 'Config' being unused
Diffstat (limited to 'erts/emulator/test/trace_SUITE.erl')
-rw-r--r--erts/emulator/test/trace_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/test/trace_SUITE.erl b/erts/emulator/test/trace_SUITE.erl
index f846b0f4b9..643c2e0472 100644
--- a/erts/emulator/test/trace_SUITE.erl
+++ b/erts/emulator/test/trace_SUITE.erl
@@ -733,7 +733,7 @@ set_on_first_spawn(Config) when is_list(Config) ->
%% Tests trace(Pid, How, [set_on_link]).
-set_on_link(Config) ->
+set_on_link(_Config) ->
Listener = fun_spawn(fun process/0),
%% Create and trace a process with the set_on_link flag.
@@ -756,7 +756,7 @@ set_on_link(Config) ->
%% Tests trace(Pid, How, [set_on_first_spawn]).
-set_on_first_link(Config) ->
+set_on_first_link(_Config) ->
ct:timetrap({seconds, 10}),
Listener = fun_spawn(fun process/0),