mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-06-12 08:21:54 +03:00
Cas variable to proper type
Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
@ -115,7 +115,7 @@ void mbedtls_mpi_mod_raw_sub( mbedtls_mpi_uint *X,
|
|||||||
{
|
{
|
||||||
mbedtls_mpi_uint c = mbedtls_mpi_core_sub( X, A, B, N->limbs );
|
mbedtls_mpi_uint c = mbedtls_mpi_core_sub( X, A, B, N->limbs );
|
||||||
|
|
||||||
(void) mbedtls_mpi_core_add_if( X, N->p, N->limbs, c );
|
(void) mbedtls_mpi_core_add_if( X, N->p, N->limbs, (unsigned) c );
|
||||||
}
|
}
|
||||||
|
|
||||||
/* END MERGE SLOT 2 */
|
/* END MERGE SLOT 2 */
|
||||||
|
Reference in New Issue
Block a user