aboutsummaryrefslogtreecommitdiffstats
path: root/lib/runtime_tools
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2013-01-23 13:32:03 +0100
committerBjörn Gustavsson <[email protected]>2013-01-23 13:32:48 +0100
commite7958cb3b3332a5ef4c067fe4f080587689b65d7 (patch)
treefc49ec4fbf5616db5ca56b9a3d36c641ee1d0075 /lib/runtime_tools
parentf7720422e87e9c54d104522c0f1483a1c3f34a36 (diff)
downloadotp-e7958cb3b3332a5ef4c067fe4f080587689b65d7.tar.gz
otp-e7958cb3b3332a5ef4c067fe4f080587689b65d7.tar.bz2
otp-e7958cb3b3332a5ef4c067fe4f080587689b65d7.zip
runtime_tools_sup: Eliminate warning
The warning was introduced in 3b73cabcba3ac6dcc91c7ae2b00f21d254dfdd4b.
Diffstat (limited to 'lib/runtime_tools')
-rw-r--r--lib/runtime_tools/src/runtime_tools_sup.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/runtime_tools/src/runtime_tools_sup.erl b/lib/runtime_tools/src/runtime_tools_sup.erl
index 264e172a3c..e8ea08ec97 100644
--- a/lib/runtime_tools/src/runtime_tools_sup.erl
+++ b/lib/runtime_tools/src/runtime_tools_sup.erl
@@ -34,7 +34,7 @@
%% The runtime tools top most supervisor starts:
%% -The ttb_autostart component. This is used for tracing at startup
%% using observer/ttb.
-init(AutoModArgs) ->
+init(_AutoModArgs) ->
Flags = {one_for_one, 0, 3600},
Children = [{ttb_autostart, {ttb_autostart, start_link, []},
temporary, 3000, worker, [ttb_autostart]}],