diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2023-02-13 04:26:33 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2023-02-13 04:26:33 +0000 |
commit | d267dc589d81b0665d58968e4f672807a8307138 (patch) | |
tree | ea280e0636a871523be234738dc1e1c38c95c571 | |
parent | 2638b3a748d0071540d72a2d82fd846197ae2398 (diff) |
Revise for negative zero changes.
-rw-r--r-- | regress/lib/libcrypto/bn/bn_to_string.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libcrypto/bn/bn_to_string.c b/regress/lib/libcrypto/bn/bn_to_string.c index 2275f98de9d..8f990f0ea50 100644 --- a/regress/lib/libcrypto/bn/bn_to_string.c +++ b/regress/lib/libcrypto/bn/bn_to_string.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_to_string.c,v 1.2 2022/12/06 18:23:29 tb Exp $ */ +/* $OpenBSD: bn_to_string.c,v 1.3 2023/02/13 04:26:32 jsing Exp $ */ /* * Copyright (c) 2019 Theo Buehler <tb@openbsd.org> * @@ -31,7 +31,7 @@ struct convert_st { struct convert_st testcases[] = { {"0", "0"}, - {"-0", "-0"}, + {"-0", "0"}, {"7", "7"}, {"-7", "-7"}, {"8", "8"}, |