summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2023-02-13 04:26:32 +0000
committerjsing <>2023-02-13 04:26:32 +0000
commit25e96687e3503f3c822064f9f8f9b02823900de1 (patch)
tree2b3f7d8dcbd7d294c66401ab15049a391a314a1d /src
parent59402a8926d023550549cfdb576bcecdb23bb2bc (diff)
downloadopenbsd-25e96687e3503f3c822064f9f8f9b02823900de1.tar.gz
openbsd-25e96687e3503f3c822064f9f8f9b02823900de1.tar.bz2
openbsd-25e96687e3503f3c822064f9f8f9b02823900de1.zip
Revise for negative zero changes.
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/bn/bn_to_string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/bn/bn_to_string.c b/src/regress/lib/libcrypto/bn/bn_to_string.c
index 2275f98de9..8f990f0ea5 100644
--- a/src/regress/lib/libcrypto/bn/bn_to_string.c
+++ b/src/regress/lib/libcrypto/bn/bn_to_string.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_to_string.c,v 1.2 2022/12/06 18:23:29 tb Exp $ */ 1/* $OpenBSD: bn_to_string.c,v 1.3 2023/02/13 04:26:32 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2019 Theo Buehler <tb@openbsd.org> 3 * Copyright (c) 2019 Theo Buehler <tb@openbsd.org>
4 * 4 *
@@ -31,7 +31,7 @@ struct convert_st {
31 31
32struct convert_st testcases[] = { 32struct convert_st testcases[] = {
33 {"0", "0"}, 33 {"0", "0"},
34 {"-0", "-0"}, 34 {"-0", "0"},
35 {"7", "7"}, 35 {"7", "7"},
36 {"-7", "-7"}, 36 {"-7", "-7"},
37 {"8", "8"}, 37 {"8", "8"},