Revise for negative zero changes.
authorjsing <jsing@openbsd.org>
Mon, 13 Feb 2023 04:26:32 +0000 (04:26 +0000)
committerjsing <jsing@openbsd.org>
Mon, 13 Feb 2023 04:26:32 +0000 (04:26 +0000)
regress/lib/libcrypto/bn/bn_to_string.c

index 2275f98..8f990f0 100644 (file)
@@ -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"},