From: jsing Date: Mon, 13 Feb 2023 04:26:32 +0000 (+0000) Subject: Revise for negative zero changes. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=10301d23fac922d97c965cdc8ef06eaf6722657d;p=openbsd Revise for negative zero changes. --- 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"},