diff options
author | José Valim <[email protected]> | 2017-05-04 07:54:28 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2017-05-04 07:54:28 +0200 |
commit | 7b13d6e79aa9e3e49e7cfdc4425fdc0c5f97f7f3 (patch) | |
tree | a8d13dba35541c25dc87ce82ccee5f7b40adf4ac /lib/compiler/test/compile_SUITE.erl | |
parent | 95e22b101b73087630fd58ae2487a91fcf004334 (diff) | |
download | otp-7b13d6e79aa9e3e49e7cfdc4425fdc0c5f97f7f3.tar.gz otp-7b13d6e79aa9e3e49e7cfdc4425fdc0c5f97f7f3.tar.bz2 otp-7b13d6e79aa9e3e49e7cfdc4425fdc0c5f97f7f3.zip |
Remove unused variable warning in compile_SUITE
Diffstat (limited to 'lib/compiler/test/compile_SUITE.erl')
-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 11a62ce753..9d4c81bb8a 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) -> |