diff options
author | Björn Gustavsson <[email protected]> | 2013-06-03 12:08:45 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-06-04 06:04:02 +0200 |
commit | 9b04c2649ce98c32335c05e90d501c2e66bb2f0e (patch) | |
tree | 04068edb9301ac703a9cdab0f7c385c3518e573e /lib/stdlib/src | |
parent | 2c6c863ef9a726fa2ae78e3d2fb7c577d60c3f36 (diff) | |
download | otp-9b04c2649ce98c32335c05e90d501c2e66bb2f0e.tar.gz otp-9b04c2649ce98c32335c05e90d501c2e66bb2f0e.tar.bz2 otp-9b04c2649ce98c32335c05e90d501c2e66bb2f0e.zip |
beam_lib: Correct wrong type specification
The function was updated in 5805b576, but not the type specificatin.
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/beam_lib.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/beam_lib.erl b/lib/stdlib/src/beam_lib.erl index 2e9ebece0e..121f9febed 100644 --- a/lib/stdlib/src/beam_lib.erl +++ b/lib/stdlib/src/beam_lib.erl @@ -300,7 +300,7 @@ clear_crypto_key_fun() -> call_crypto_server(clear_crypto_key_fun). -spec make_crypto_key(mode(), string()) -> - {binary(), binary(), binary(), binary()}. + {mode(), [binary()], binary(), integer()}. make_crypto_key(des3_cbc=Type, String) -> <<K1:8/binary,K2:8/binary>> = First = erlang:md5(String), |