From 25e96687e3503f3c822064f9f8f9b02823900de1 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Mon, 13 Feb 2023 04:26:32 +0000 Subject: Revise for negative zero changes. --- src/regress/lib/libcrypto/bn/bn_to_string.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 @@ -/* $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"}, -- cgit v1.2.3-55-g6feb