diff options
author | Kenneth Lundin <[email protected]> | 2012-08-28 12:46:18 +0200 |
---|---|---|
committer | Kenneth Lundin <[email protected]> | 2012-08-28 12:46:18 +0200 |
commit | d7cb9ee479189946ccaeb5b5170dbf4a4a478adb (patch) | |
tree | f7ab66643c1028b957ef6d14c24695c88562338b /lib/asn1/src/asn1ct.erl | |
parent | ee5133a635f08409fc0e943ea79145bc36acbe4f (diff) | |
download | otp-d7cb9ee479189946ccaeb5b5170dbf4a4a478adb.tar.gz otp-d7cb9ee479189946ccaeb5b5170dbf4a4a478adb.tar.bz2 otp-d7cb9ee479189946ccaeb5b5170dbf4a4a478adb.zip |
Remove Dialyzer warnings
Diffstat (limited to 'lib/asn1/src/asn1ct.erl')
-rw-r--r-- | lib/asn1/src/asn1ct.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asn1/src/asn1ct.erl b/lib/asn1/src/asn1ct.erl index 99755a95a6..8e971a1c76 100644 --- a/lib/asn1/src/asn1ct.erl +++ b/lib/asn1/src/asn1ct.erl @@ -833,7 +833,7 @@ generate({true,{M,_Module,GenTOrV}},OutFile,EncodingRule,Options) -> asn1ct_table:new(check_functions), %% create decoding function names and taglists for partial decode - case specialized_decode_prepare(EncodingRule,M,GenTOrV,Options) of + case (catch specialized_decode_prepare(EncodingRule,M,GenTOrV,Options)) of {error, Reason} -> warning("Error in configuration file: ~n~p~n", [Reason], Options, "Error in configuration file"); |