mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-21 21:36:21 +01:00
Fix code styling for return statements
This commit is contained in:
parent
3c38f29a61
commit
d8bb82665e
27 changed files with 256 additions and 256 deletions
|
|
@ -144,7 +144,7 @@ int ecdh_make_params( ecdh_context *ctx, size_t *olen,
|
|||
return( ret );
|
||||
|
||||
*olen = grp_len + pt_len;
|
||||
return 0;
|
||||
return( 0 );
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -166,7 +166,7 @@ int ecdh_read_params( ecdh_context *ctx,
|
|||
!= 0 )
|
||||
return( ret );
|
||||
|
||||
return 0;
|
||||
return( 0 );
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue