aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2013-06-03 12:08:45 +0200
committerBjörn Gustavsson <[email protected]>2013-06-04 06:04:02 +0200
commit9b04c2649ce98c32335c05e90d501c2e66bb2f0e (patch)
tree04068edb9301ac703a9cdab0f7c385c3518e573e /lib/stdlib/src
parent2c6c863ef9a726fa2ae78e3d2fb7c577d60c3f36 (diff)
downloadotp-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.erl2
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),