From b4a081932338f65aa87aeba5008463feb0a78519 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Mon, 12 May 2025 14:17:05 -0600 Subject: More GCC 15 fixes --- libcr_ipc/tests/test_rpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcr_ipc/tests/test_rpc.c') diff --git a/libcr_ipc/tests/test_rpc.c b/libcr_ipc/tests/test_rpc.c index 1461450..ee88f47 100644 --- a/libcr_ipc/tests/test_rpc.c +++ b/libcr_ipc/tests/test_rpc.c @@ -50,7 +50,7 @@ COROUTINE worker2_cr(void *_ch) { } int main() { - intrpc_t ch = {0}; + intrpc_t ch = {}; coroutine_add("worker1", worker1_cr, &ch); coroutine_add("caller", caller_cr, &ch); coroutine_add("worker2", worker2_cr, &ch); -- cgit v1.2.3-2-g168b