3rdparty: Fix newlines and trailing whitespace
diff --git a/programs/test/benchmark.c b/programs/test/benchmark.c
index fc84f57..74fcaa6 100644
--- a/programs/test/benchmark.c
+++ b/programs/test/benchmark.c
@@ -1021,12 +1021,12 @@
continue;
mbedtls_ecdh_init( &ecdh_srv );
- mbedtls_ecdh_init( &ecdh_cli );
+ mbedtls_ecdh_init( &ecdh_cli );
mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", curve_info->name );
TIME_PUBLIC( title, "full handshake",
const unsigned char * p_srv = buf_srv;
-
+
CHECK_AND_CONTINUE( mbedtls_ecdh_setup( &ecdh_srv, curve_info->grp_id ) );
CHECK_AND_CONTINUE( mbedtls_ecdh_make_params( &ecdh_srv, &olen, buf_srv, sizeof( buf_srv ), myrand, NULL ) );
@@ -1038,7 +1038,7 @@
CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh_cli, &olen, buf_cli, sizeof( buf_cli ), myrand, NULL ) );
mbedtls_ecdh_free( &ecdh_cli );
-
+
mbedtls_ecdh_free( &ecdh_srv );
);