File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -93,9 +93,9 @@ static void secp256k1_ecmult_odd_multiples_table_globalz_windowa(secp256k1_ge_t
9393}
9494
9595static void secp256k1_ecmult_odd_multiples_table_storage_var (int n , secp256k1_ge_storage_t * pre , const secp256k1_gej_t * a ) {
96- secp256k1_gej_t * prej = checked_malloc (sizeof (secp256k1_gej_t ) * n );
97- secp256k1_ge_t * prea = checked_malloc (sizeof (secp256k1_ge_t ) * n );
98- secp256k1_fe_t * zr = checked_malloc (sizeof (secp256k1_fe_t ) * n );
96+ secp256k1_gej_t * prej = ( secp256k1_gej_t * ) checked_malloc (sizeof (secp256k1_gej_t ) * n );
97+ secp256k1_ge_t * prea = ( secp256k1_ge_t * ) checked_malloc (sizeof (secp256k1_ge_t ) * n );
98+ secp256k1_fe_t * zr = ( secp256k1_fe_t * ) checked_malloc (sizeof (secp256k1_fe_t ) * n );
9999 int i ;
100100
101101 /* Compute the odd multiples in Jacobian form. */
You can’t perform that action at this time.
0 commit comments