diff options
author | jsing <> | 2023-02-13 04:26:32 +0000 |
---|---|---|
committer | jsing <> | 2023-02-13 04:26:32 +0000 |
commit | 25e96687e3503f3c822064f9f8f9b02823900de1 (patch) | |
tree | 2b3f7d8dcbd7d294c66401ab15049a391a314a1d /src | |
parent | 59402a8926d023550549cfdb576bcecdb23bb2bc (diff) | |
download | openbsd-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.c | 4 |
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 | ||
32 | struct convert_st testcases[] = { | 32 | struct 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"}, |