diff options
author | Björn Gustavsson <[email protected]> | 2010-03-10 07:39:34 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-03-11 10:26:48 +0100 |
commit | e42725a217c2aeeab7cdebfa9f0dfc9840304fe1 (patch) | |
tree | a5173c99f5b4af6ba44026042ac96c2bf4197749 /lib/asn1 | |
parent | 44cc5dfcbea91ef419c55a70c67c87b3a44e7a79 (diff) | |
download | otp-e42725a217c2aeeab7cdebfa9f0dfc9840304fe1.tar.gz otp-e42725a217c2aeeab7cdebfa9f0dfc9840304fe1.tar.bz2 otp-e42725a217c2aeeab7cdebfa9f0dfc9840304fe1.zip |
asn1 tests: Eliminate warning for an unused variable
Diffstat (limited to 'lib/asn1')
-rw-r--r-- | lib/asn1/test/testX420.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asn1/test/testX420.erl b/lib/asn1/test/testX420.erl index d36b246dee..67c4322ab5 100644 --- a/lib/asn1/test/testX420.erl +++ b/lib/asn1/test/testX420.erl @@ -50,7 +50,7 @@ compile_loop(Erule,[Spec|Specs],Options,Config) Error -> Error end; -compile_loop(Erule,_Specs,_Options,_Config) -> +compile_loop(_Erule,_Specs,_Options,_Config) -> ok.%%{skip,io_lib:format("Not tested for ~p",[Erule])}. |