diff options
author | Niels Möller <nisse@lysator.liu.se> | 2013-02-27 09:26:51 +0100 |
---|---|---|
committer | Niels Möller <nisse@lysator.liu.se> | 2013-02-27 09:26:51 +0100 |
commit | ad85f7ace369071057f2f16bfb6e25ca1de86335 (patch) | |
tree | f108c0da74d128819dc6bd8dc0cdbe32c92840b3 | |
parent | 0dca3f8f4bbc39bce7900136776888e12145d564 (diff) | |
download | nettle-ad85f7ace369071057f2f16bfb6e25ca1de86335.tar.gz |
Typo fix in ecc-benchmark.c
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | examples/ecc-benchmark.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2013-02-27 Niels Möller <nisse@lysator.liu.se> + * examples/ecc-benchmark.c (bench_add_jjj): Typo fix, benchmark + the right function. + * gmp-glue.h: Check if GMP provides mpz_limbs_read (expected in next release). * gmp-glue.c: Use GMP's mpz_limbs_read and friends if available. diff --git a/examples/ecc-benchmark.c b/examples/ecc-benchmark.c index 6a49f369..596b2ff7 100644 --- a/examples/ecc-benchmark.c +++ b/examples/ecc-benchmark.c @@ -209,7 +209,7 @@ static void bench_add_jjj (void *p) { struct ecc_ctx *ctx = (struct ecc_ctx *) p; - ecc_add_jja (ctx->ecc, ctx->rp, ctx->ap, ctx->bp, ctx->tp); + ecc_add_jjj (ctx->ecc, ctx->rp, ctx->ap, ctx->bp, ctx->tp); } static void |