mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-24 00:06:32 +01:00
Fix MSVC warnings in library and programs
This commit is contained in:
parent
7e2d68c1b2
commit
9de64f5af1
7 changed files with 38 additions and 18 deletions
|
|
@ -491,7 +491,7 @@ int main( int argc, char *argv[] )
|
|||
*/
|
||||
if( opt.seed == 0 )
|
||||
{
|
||||
opt.seed = time( NULL );
|
||||
opt.seed = (unsigned int) time( NULL );
|
||||
mbedtls_printf( " . Pseudo-random seed: %u\n", opt.seed );
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue