1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Fix code style

This commit is contained in:
Christoph M. Wintersteiger
2019-04-16 12:54:56 +01:00
committed by Janos Follath
parent 09a24b3dda
commit c25df6848b
2 changed files with 3 additions and 3 deletions

View File

@ -63,7 +63,7 @@ int mbedtls_ecdh_can_do( mbedtls_ecp_group_id gid )
{ {
/* At this time, all groups support ECDH. */ /* At this time, all groups support ECDH. */
(void) gid; (void) gid;
return 1; return( 1 );
} }
#if !defined(MBEDTLS_ECDH_GEN_PUBLIC_ALT) #if !defined(MBEDTLS_ECDH_GEN_PUBLIC_ALT)