diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-02-06 14:04:16 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-02-06 14:26:32 +0100 |
commit | d557da5d79821e2f5b3fef081a52978221159a30 (patch) | |
tree | 41ba774b32e7218d7a51135498d37d1aeaefd776 /lib/vtls | |
parent | 600ccb223750215e9ab77ae40a942caebb27fb09 (diff) |
axtls: fix conversion from size_t to int warning
Diffstat (limited to 'lib/vtls')
-rw-r--r-- | lib/vtls/axtls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/axtls.c b/lib/vtls/axtls.c index 1e511a2c7..bcfe62b4d 100644 --- a/lib/vtls/axtls.c +++ b/lib/vtls/axtls.c @@ -671,7 +671,7 @@ int Curl_axtls_random(struct SessionHandle *data, * race condition is that some global resources will leak. */ RNG_initialize(); } - get_random(length, entropy); + get_random((int)length, entropy); return 0; } |