aboutsummaryrefslogtreecommitdiff
path: root/src/randoms.erl
diff options
context:
space:
mode:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2016-09-24 23:34:28 +0300
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2016-09-24 23:34:28 +0300
commitfa31e3ef2321e3901d167d3654693b85313acf08 (patch)
treea0cc9c146661887ef0b1440a103484fa5684e044 /src/randoms.erl
parentImprove namespace handling (diff)
Deprecate jlib:integer_to_binary/1 and jlib:binary_to_integer/1
Diffstat (limited to 'src/randoms.erl')
-rw-r--r--src/randoms.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/randoms.erl b/src/randoms.erl
index 52fceef4e..60d0b4e3d 100644
--- a/src/randoms.erl
+++ b/src/randoms.erl
@@ -36,5 +36,5 @@ start() ->
get_string() ->
R = crypto:rand_uniform(0, 16#10000000000000000),
- jlib:integer_to_binary(R).
+ integer_to_binary(R).