mirror of
https://github.com/curl/curl.git
synced 2026-07-24 18:57:18 +03:00
axtls: fix conversion from size_t to int warning
This commit is contained in:
parent
600ccb2237
commit
d557da5d79
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue