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

Remove unused parameter

Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
Gabor Mezei
2022-09-15 20:15:34 +02:00
parent 53e455db7b
commit cfc0eb8d22
5 changed files with 6 additions and 9 deletions

View File

@ -55,8 +55,7 @@ void mbedtls_mpi_mod_raw_cond_swap( mbedtls_mpi_uint *X,
const mbedtls_mpi_mod_modulus *m,
unsigned char swap )
{
mbedtls_mpi_core_cond_swap( X, m->limbs,
Y, m->limbs, swap );
mbedtls_mpi_core_cond_swap( X, Y, m->limbs, swap );
}
int mbedtls_mpi_mod_raw_read( mbedtls_mpi_uint *X,