diff options
author | tb <> | 2022-09-05 21:06:31 +0000 |
---|---|---|
committer | tb <> | 2022-09-05 21:06:31 +0000 |
commit | 7608dd1ef4e1d2656a9203e2091d53747a14679f (patch) | |
tree | cda70a930b6e462786beda42d51e130bb873b6c3 /src/regress/lib/libcrypto/bn | |
parent | 0b315a15aa761d629b59c54becaeecc44627e42e (diff) | |
download | openbsd-7608dd1ef4e1d2656a9203e2091d53747a14679f.tar.gz openbsd-7608dd1ef4e1d2656a9203e2091d53747a14679f.tar.bz2 openbsd-7608dd1ef4e1d2656a9203e2091d53747a14679f.zip |
Convert from %i to %d
Diffstat (limited to 'src/regress/lib/libcrypto/bn')
-rw-r--r-- | src/regress/lib/libcrypto/bn/general/bntest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/bn/general/bntest.c b/src/regress/lib/libcrypto/bn/general/bntest.c index 53cce74ae0..b9581a0cd9 100644 --- a/src/regress/lib/libcrypto/bn/general/bntest.c +++ b/src/regress/lib/libcrypto/bn/general/bntest.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bntest.c,v 1.24 2021/12/29 23:00:32 tb Exp $ */ | 1 | /* $OpenBSD: bntest.c,v 1.25 2022/09/05 21:06:31 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -2133,7 +2133,7 @@ test_gf2m_mod_solve_quad(BIO *bp, BN_CTX *ctx) | |||
2133 | } | 2133 | } |
2134 | } | 2134 | } |
2135 | if (s == 0) { | 2135 | if (s == 0) { |
2136 | fprintf(stderr, "All %i tests of GF(2^m) modular solve quadratic resulted in no roots;\n", num0); | 2136 | fprintf(stderr, "All %d tests of GF(2^m) modular solve quadratic resulted in no roots;\n", num0); |
2137 | fprintf(stderr, "this is very unlikely and probably indicates an error.\n"); | 2137 | fprintf(stderr, "this is very unlikely and probably indicates an error.\n"); |
2138 | goto err; | 2138 | goto err; |
2139 | } | 2139 | } |