diff options
-rw-r--r-- | src/regress/lib/libcrypto/bn/bn_unit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/bn/bn_unit.c b/src/regress/lib/libcrypto/bn/bn_unit.c index 24c7569ff9..bc49192b8c 100644 --- a/src/regress/lib/libcrypto/bn/bn_unit.c +++ b/src/regress/lib/libcrypto/bn/bn_unit.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bn_unit.c,v 1.5 2023/06/20 06:36:09 jsing Exp $ */ | 1 | /* $OpenBSD: bn_unit.c,v 1.6 2023/06/20 06:46:07 tb Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> |
@@ -80,7 +80,7 @@ test_bn_num_bits(void) | |||
80 | errx(1, "BN_new"); | 80 | errx(1, "BN_new"); |
81 | 81 | ||
82 | if ((num_bits = BN_num_bits(bn)) != 0) { | 82 | if ((num_bits = BN_num_bits(bn)) != 0) { |
83 | warnx("BN_num_bits_word(0): want 0, got %d", num_bits); | 83 | warnx("BN_num_bits(0): want 0, got %d", num_bits); |
84 | failed |= 1; | 84 | failed |= 1; |
85 | } | 85 | } |
86 | 86 | ||