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_select.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libcr_ipc/tests/test_select.c') diff --git a/libcr_ipc/tests/test_select.c b/libcr_ipc/tests/test_select.c index 9b5d117..3107155 100644 --- a/libcr_ipc/tests/test_select.c +++ b/libcr_ipc/tests/test_select.c @@ -11,15 +11,15 @@ CR_CHAN_DECLARE(intchan, int); -intchan_t ch[10] = {0}; -intchan_t fch = {0}; +intchan_t ch[10] = {}; +intchan_t fch = {}; COROUTINE consumer_cr(void *) { cr_begin(); struct cr_select_arg args[11]; - bool chdone[10] = {0}; + bool chdone[10] = {}; int arg2ch[10]; for (;;) { int ret_ch; -- cgit v1.2.3-2-g168b