diff options
author | Björn Gustavsson <[email protected]> | 2018-11-29 11:43:51 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2018-11-29 11:49:30 +0100 |
commit | d409ab76416108936610e043fa14a0a0f0d314af (patch) | |
tree | 386e7b39b601f0c2f427c40ccf189df0ce668af2 /lib/compiler/test/map_SUITE.erl | |
parent | d3ecc9efa4e46af8659ad8189802024834afe410 (diff) | |
download | otp-d409ab76416108936610e043fa14a0a0f0d314af.tar.gz otp-d409ab76416108936610e043fa14a0a0f0d314af.tar.bz2 otp-d409ab76416108936610e043fa14a0a0f0d314af.zip |
Eliminate warnings for unused variables
Diffstat (limited to 'lib/compiler/test/map_SUITE.erl')
-rw-r--r-- | lib/compiler/test/map_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/test/map_SUITE.erl b/lib/compiler/test/map_SUITE.erl index 6ce0dfb581..3d7a4e445a 100644 --- a/lib/compiler/test/map_SUITE.erl +++ b/lib/compiler/test/map_SUITE.erl @@ -2085,7 +2085,7 @@ t_register_corruption(Config) when is_list(Config) -> {3,wanted,<<"value">>} = register_corruption_foo(wanted,M), ok. -register_corruption_foo(A,#{a := V1, b := V2}) -> +register_corruption_foo(_,#{a := V1, b := V2}) -> register_corruption_dummy_call(1,V1,V2); register_corruption_foo(A,#{b := V}) -> register_corruption_dummy_call(2,A,V); |