summaryrefslogtreecommitdiff
path: root/ecc-mul-a.c
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2014-08-23 23:31:47 +0200
committerNiels Möller <nisse@lysator.liu.se>2014-08-23 23:31:47 +0200
commitdd94851aaaea0e76992260b0696d6dc843c22819 (patch)
tree0d9c7f53ece6c00f84aa8c31d2e4874510d410f1 /ecc-mul-a.c
parent308c10895e695edd08b09453360b390b591c3c7e (diff)
downloadnettle-dd94851aaaea0e76992260b0696d6dc843c22819.tar.gz
Deleted unused INITIAL argument for ecc_a_to_j.
Diffstat (limited to 'ecc-mul-a.c')
-rw-r--r--ecc-mul-a.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ecc-mul-a.c b/ecc-mul-a.c
index 6cfc8a48..82f72e65 100644
--- a/ecc-mul-a.c
+++ b/ecc-mul-a.c
@@ -67,7 +67,7 @@ ecc_mul_a (const struct ecc_curve *ecc,
unsigned i;
- ecc_a_to_j (ecc, 1, pj, p);
+ ecc_a_to_j (ecc, pj, p);
mpn_zero (r, 3*ecc->size);
for (i = ecc->size, is_zero = 1; i-- > 0; )
@@ -111,7 +111,7 @@ table_init (const struct ecc_curve *ecc,
unsigned j;
mpn_zero (TABLE(0), 3*ecc->size);
- ecc_a_to_j (ecc, 1, TABLE(1), p);
+ ecc_a_to_j (ecc, TABLE(1), p);
for (j = 2; j < size; j += 2)
{