diff options
author | Björn Gustavsson <[email protected]> | 2011-02-23 14:04:15 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-02-23 14:04:15 +0100 |
commit | 8592a7629a4afd1ea5b19f7473b3b06605169e66 (patch) | |
tree | bbc0aa656669b82b14a64be4d41c64501e57e01a /lib/kernel/test | |
parent | 9726d9798b0c41ba2126e55e64c5913873116218 (diff) | |
download | otp-8592a7629a4afd1ea5b19f7473b3b06605169e66.tar.gz otp-8592a7629a4afd1ea5b19f7473b3b06605169e66.tar.bz2 otp-8592a7629a4afd1ea5b19f7473b3b06605169e66.zip |
kernel: Eliminate compiler warning
Diffstat (limited to 'lib/kernel/test')
-rw-r--r-- | lib/kernel/test/erl_distribution_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/kernel/test/erl_distribution_SUITE.erl b/lib/kernel/test/erl_distribution_SUITE.erl index efce5bd476..9cccdab76b 100644 --- a/lib/kernel/test/erl_distribution_SUITE.erl +++ b/lib/kernel/test/erl_distribution_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1997-2010. All Rights Reserved. +%% Copyright Ericsson AB 1997-2011. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -865,7 +865,7 @@ monitor_nodes_otp_6481_test(Config, TestType) when is_list(Config) -> % the node mercilessly. % We then want to ensure that the nodedown message arrives % last ... without garbage after it. - Pid = spawn(fun() -> node_loop_send(Me, NodeMsg, 1) end), + _ = spawn(fun() -> node_loop_send(Me, NodeMsg, 1) end), receive {Me, kill_it} -> ok end, halt() end), |