Commit e6220f6e31 for openssl.org

commit e6220f6e313d4036533ded475fb510928a62cfef
Author: Andrew Dinh <andrewd@openssl.org>
Date:   Wed Jun 24 23:29:08 2026 +0700

    Fix OP_READ_FAIL_WAIT macro definition

    Reviewed-by: Saša NedvÄ›dický <sashan@openssl.org>
    Reviewed-by: Norbert Pocs <norbertp@openssl.org>
    MergeDate: Tue Jun 30 07:54:52 2026
    (Merged from https://github.com/openssl/openssl/pull/31707)

diff --git a/test/radix/quic_ops.c b/test/radix/quic_ops.c
index 27e5a3705d..5d69d88de0 100644
--- a/test/radix/quic_ops.c
+++ b/test/radix/quic_ops.c
@@ -1079,9 +1079,9 @@ err:
         OP_FUNC(hf_read_fail))

 #define OP_READ_FAIL_WAIT(name) \
-    (OP_SELECT_SSL(0, name),                                    \
-     OP_PUSH_U64(1),                                            \
-     OP_FUNC(hf_read_fail)
+    (OP_SELECT_SSL(0, name),    \
+        OP_PUSH_U64(1),         \
+        OP_FUNC(hf_read_fail))

 #define OP_POP_ERR() \
     OP_FUNC(hf_pop_err)