field_gmp's negate doesn't need to use the magnitude argument.

This commit is contained in:
Gregory Maxwell
2014-11-12 15:59:26 -08:00
parent f0709ac57e
commit 861f9a59cc
2 changed files with 3 additions and 1 deletions

View File

@@ -97,6 +97,7 @@ static void secp256k1_fe_get_b32(unsigned char *r, const secp256k1_fe_t *a) {
}
SECP256K1_INLINE static void secp256k1_fe_negate(secp256k1_fe_t *r, const secp256k1_fe_t *a, int m) {
(void)m;
*r = *a;
secp256k1_fe_normalize(r);
for (int i=0; i<FIELD_LIMBS; i++)