Fix missing curly braces.

This commit is contained in:
Peter Vaskovic 2014-08-06 00:48:39 +02:00 committed by Manuel Pégourié-Gonnard
parent baa7f07809
commit a676acf66b

View File

@ -952,7 +952,9 @@ static int ecp_double_jac( const ecp_group *grp, ecp_point *R,
MOD_SUB( X3 );
}
else
{
MPI_CHK( mpi_mul_mpi( &X3, &X3, &grp->A ) ); MOD_MUL( X3 );
}
MPI_CHK( mpi_add_mpi( &T3, &T3, &X3 ) ); MOD_ADD( T3 );
MPI_CHK( mpi_mul_mpi( &X3, &T3, &T3 ) ); MOD_MUL( X3 );