commit | 986b55af03c5d3c4339aefea3a809c1668527f40 | [log] [tgz] |
---|---|---|
author | Paul Elliott <paul.elliott@arm.com> | Tue Apr 20 21:46:29 2021 +0100 |
committer | Paul Elliott <paul.elliott@arm.com> | Tue Apr 20 21:46:29 2021 +0100 |
tree | a61df061a994a470b5ee242bd87c641610105b80 | |
parent | 7725a63c240b1db6026147ddc6b819b91ee43101 [diff] [blame] |
Style Fix Signed-off-by: Paul Elliott <paul.elliott@arm.com>
diff --git a/library/bignum.c b/library/bignum.c index 225e36c..e00204b 100644 --- a/library/bignum.c +++ b/library/bignum.c
@@ -1666,7 +1666,7 @@ * calculating the result is trivial in those cases. */ if( b == 0 || n == 0 ) { - return mbedtls_mpi_lset( X, 0 ); + return( mbedtls_mpi_lset( X, 0 ) ); } /* Calculate A*b as A + A*(b-1) to take advantage of mpi_mul_hlp */