Skip to content
Snippets Groups Projects
Commit d557da5d authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

axtls: fix conversion from size_t to int warning

parent 600ccb22
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment