diff options
author | Björn Gustavsson <[email protected]> | 2017-05-05 14:51:34 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2017-05-05 14:51:34 +0200 |
commit | 9ac8bdb19f55c593b8b4b10a5d72032e33bef406 (patch) | |
tree | 814d322fba037cb87cdfe1e98598fb426d5b29a8 | |
parent | fb36f1f4ee74f680330d65c2c81b6b8e042b5735 (diff) | |
parent | 7b13d6e79aa9e3e49e7cfdc4425fdc0c5f97f7f3 (diff) | |
download | otp-9ac8bdb19f55c593b8b4b10a5d72032e33bef406.tar.gz otp-9ac8bdb19f55c593b8b4b10a5d72032e33bef406.tar.bz2 otp-9ac8bdb19f55c593b8b4b10a5d72032e33bef406.zip |
Merge pull request #1438 from josevalim/patch-10
Remove unused variable warning in compile_SUITE
-rw-r--r-- | lib/compiler/test/compile_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/test/compile_SUITE.erl b/lib/compiler/test/compile_SUITE.erl index e9e595084a..dbf91400ad 100644 --- a/lib/compiler/test/compile_SUITE.erl +++ b/lib/compiler/test/compile_SUITE.erl @@ -603,7 +603,7 @@ install_crypto_key(Key) -> %% Miscellanous tests, mainly to get better coverage. debug_info(erlang_v1, Module, ok, _Opts) -> {ok, [Module]}; -debug_info(erlang_v1, Module, error, _Opts) -> +debug_info(erlang_v1, _Module, error, _Opts) -> {error, unknown_format}. custom_debug_info(Config) when is_list(Config) -> |