mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Fix code styling for return statements
This commit is contained in:
@ -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 );
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user