From f607813f53532d2e6c8a3770887d5ffe4e302c72 Mon Sep 17 00:00:00 2001 From: Janos Follath Date: Tue, 26 Feb 2019 17:02:37 +0000 Subject: [PATCH] ECP: remove extra whitespaces --- library/ecp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ecp.c b/library/ecp.c index 69c432b765..c3c5ce5406 100644 --- a/library/ecp.c +++ b/library/ecp.c @@ -742,7 +742,7 @@ int mbedtls_ecp_point_write_binary( const mbedtls_ecp_group *grp, { *olen = plen; if( buflen < *olen ) - return( MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL ); + return( MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL ); MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary_le( &P->X, buf, plen ) ); }