Move const
keyword prior to type name
Signed-off-by: Hanno Becker <hanno.becker@arm.com>
This commit is contained in:
parent
dfcb2d084b
commit
53b3c607a0
1 changed files with 1 additions and 1 deletions
|
@ -5222,7 +5222,7 @@ static int ecp_mod_p255( mbedtls_mpi *N )
|
|||
|
||||
/* Helper references for top part of N */
|
||||
mbedtls_mpi_uint * const NT_p = N->p + P255_WIDTH;
|
||||
size_t const NT_n = N->n - P255_WIDTH;
|
||||
const size_t NT_n = N->n - P255_WIDTH;
|
||||
if( NT_n == 0 || NT_n > P255_WIDTH )
|
||||
return( 0 );
|
||||
|
||||
|
|
Loading…
Reference in a new issue