summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/bn/bn_mul_div.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/regress/lib/libcrypto/bn/bn_mul_div.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/bn/bn_mul_div.c b/src/regress/lib/libcrypto/bn/bn_mul_div.c
index 278f8d715b..810c7cde19 100644
--- a/src/regress/lib/libcrypto/bn/bn_mul_div.c
+++ b/src/regress/lib/libcrypto/bn/bn_mul_div.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_mul_div.c,v 1.5 2023/01/29 15:51:26 jsing Exp $ */ 1/* $OpenBSD: bn_mul_div.c,v 1.6 2023/04/11 05:53:53 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2023 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2023 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -386,7 +386,7 @@ benchmark_run(const struct benchmark *bm, int seconds)
386 timespecsub(&end, &start, &duration); 386 timespecsub(&end, &start, &duration);
387 fprintf(stderr, "%d iterations in %f seconds - %llu op/s\n", i, 387 fprintf(stderr, "%d iterations in %f seconds - %llu op/s\n", i,
388 duration.tv_sec + duration.tv_nsec / 1000000000.0, 388 duration.tv_sec + duration.tv_nsec / 1000000000.0,
389 (size_t)i * 1000000000 / 389 (uint64_t)i * 1000000000 /
390 (duration.tv_sec * 1000000000 + duration.tv_nsec)); 390 (duration.tv_sec * 1000000000 + duration.tv_nsec));
391 391
392 BN_CTX_end(bn_ctx); 392 BN_CTX_end(bn_ctx);