diff options
author | Zandra <[email protected]> | 2016-05-30 12:27:51 +0200 |
---|---|---|
committer | Zandra Hird <[email protected]> | 2016-06-07 14:35:20 +0200 |
commit | 4b6a93510f51afcf7d8c91c568e9db84ef8b1d44 (patch) | |
tree | 2bf0d34c0584d6228acc9e41031504862b3ba9aa | |
parent | f072d82a92ef914a23422b4d03cb687bb841fa4f (diff) | |
download | otp-4b6a93510f51afcf7d8c91c568e9db84ef8b1d44.tar.gz otp-4b6a93510f51afcf7d8c91c568e9db84ef8b1d44.tar.bz2 otp-4b6a93510f51afcf7d8c91c568e9db84ef8b1d44.zip |
ct_ssh: Fix unmatched_return warnings
-rw-r--r-- | lib/common_test/src/ct_ssh.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common_test/src/ct_ssh.erl b/lib/common_test/src/ct_ssh.erl index 92d912052e..6ab3bf036c 100644 --- a/lib/common_test/src/ct_ssh.erl +++ b/lib/common_test/src/ct_ssh.erl @@ -962,8 +962,8 @@ init(KeyOrName, {ConnType,Addr,Port}, AllOpts) -> end, [], AllOpts1), FinalOptions = [{silently_accept_hosts,true}, {user_interaction,false} | Options], - crypto:start(), - ssh:start(), + _ = crypto:start(), + _ = ssh:start(), Result = case ConnType of ssh -> ssh:connect(Addr, Port, FinalOptions); |