summaryrefslogtreecommitdiff
path: root/moduli.c
diff options
context:
space:
mode:
authorderaadt@openbsd.org <deraadt@openbsd.org>2017-12-08 03:45:52 +0000
committerDamien Miller <djm@mindrot.org>2017-12-12 10:32:04 +1100
commitaabd75ec76575c1b17232e6526a644097cd798e5 (patch)
tree9422eeb56e72794e276371ca1c29a3c46055e2de /moduli.c
parentfd4eeeec16537870bd40d04836c7906ec141c17d (diff)
upstream commit
time_t printing needs %lld and (long long) casts ok djm OpenBSD-Commit-ID: 4a93bc2b0d42a39b8f8de8bb74d07ad2e5e83ef7
Diffstat (limited to 'moduli.c')
-rw-r--r--moduli.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/moduli.c b/moduli.c
index e983b07b7..233cba8e8 100644
--- a/moduli.c
+++ b/moduli.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: moduli.c,v 1.31 2016/09/12 01:22:38 deraadt Exp $ */ 1/* $OpenBSD: moduli.c,v 1.32 2017/12/08 03:45:52 deraadt Exp $ */
2/* 2/*
3 * Copyright 1994 Phil Karn <karn@qualcomm.com> 3 * Copyright 1994 Phil Karn <karn@qualcomm.com>
4 * Copyright 1996-1998, 2003 William Allen Simpson <wsimpson@greendragon.com> 4 * Copyright 1996-1998, 2003 William Allen Simpson <wsimpson@greendragon.com>
@@ -412,8 +412,8 @@ gen_candidates(FILE *out, u_int32_t memory, u_int32_t power, BIGNUM *start)
412 412
413 time(&time_stop); 413 time(&time_stop);
414 414
415 logit("%.24s Sieved with %u small primes in %ld seconds", 415 logit("%.24s Sieved with %u small primes in %lld seconds",
416 ctime(&time_stop), largetries, (long) (time_stop - time_start)); 416 ctime(&time_stop), largetries, (long long)(time_stop - time_start));
417 417
418 for (j = r = 0; j < largebits; j++) { 418 for (j = r = 0; j < largebits; j++) {
419 if (BIT_TEST(LargeSieve, j)) 419 if (BIT_TEST(LargeSieve, j))