From 6e478830615058bac4c0b831f6bedeb57f6b4d5c Mon Sep 17 00:00:00 2001 From: yashykt <4181124+yashykt@users.noreply.github.com> Date: Fri, 17 Jan 2025 01:14:40 +0000 Subject: [PATCH] Automated change: Fix sanity tests --- src/core/lib/iomgr/closure.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/core/lib/iomgr/closure.h b/src/core/lib/iomgr/closure.h index 2404767cafd55..e8f7a0b7812b5 100644 --- a/src/core/lib/iomgr/closure.h +++ b/src/core/lib/iomgr/closure.h @@ -211,10 +211,7 @@ inline grpc_closure* grpc_closure_create(grpc_iomgr_cb_func cb, void* cb_arg) { grpc_closure_create(cb, cb_arg) #endif -#define GRPC_CLOSURE_LIST_INIT \ - { \ - nullptr, nullptr \ - } +#define GRPC_CLOSURE_LIST_INIT {nullptr, nullptr} inline void grpc_closure_list_init(grpc_closure_list* closure_list) { closure_list->head = closure_list->tail = nullptr;