From 10301d23fac922d97c965cdc8ef06eaf6722657d Mon Sep 17 00:00:00 2001 From: jsing Date: Mon, 13 Feb 2023 04:26:32 +0000 Subject: [PATCH] Revise for negative zero changes. --- regress/lib/libcrypto/bn/bn_to_string.c | 4 ++-- 1 file 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 * @@ -31,7 +31,7 @@ struct convert_st { struct convert_st testcases[] = { {"0", "0"}, - {"-0", "-0"}, + {"-0", "0"}, {"7", "7"}, {"-7", "-7"}, {"8", "8"}, -- 2.20.1