From: Andrew Dinh Date: Wed, 24 Jun 2026 16:29:08 +0000 (+0700) Subject: Fix OP_READ_FAIL_WAIT macro definition X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6220f6e313d4036533ded475fb510928a62cfef;p=thirdparty%2Fopenssl.git Fix OP_READ_FAIL_WAIT macro definition Reviewed-by: Saša Nedvědický Reviewed-by: Norbert Pocs 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 27e5a3705d0..5d69d88de0b 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)