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_chan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcr_ipc/tests/test_chan.c') diff --git a/libcr_ipc/tests/test_chan.c b/libcr_ipc/tests/test_chan.c index 4788dd4..a6eba82 100644 --- a/libcr_ipc/tests/test_chan.c +++ b/libcr_ipc/tests/test_chan.c @@ -41,7 +41,7 @@ COROUTINE consumer_cr(void *_ch) { } int main() { - intchan_t ch = {0}; + intchan_t ch = {}; coroutine_add("producer", producer_cr, &ch); coroutine_add("consumer", consumer_cr, &ch); coroutine_main(); -- cgit v1.2.3-2-g168b