summaryrefslogtreecommitdiff
path: root/libcr_ipc/tests/test_chan.c
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-05-12 14:17:05 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-05-12 14:17:33 -0600
commitb4a081932338f65aa87aeba5008463feb0a78519 (patch)
treece628075a2ae59d5362d2662465c918f57e81607 /libcr_ipc/tests/test_chan.c
parent42729f477684b12735b572a4975d32fb1002a530 (diff)
More GCC 15 fixes
Diffstat (limited to 'libcr_ipc/tests/test_chan.c')
-rw-r--r--libcr_ipc/tests/test_chan.c2
1 files changed, 1 insertions, 1 deletions
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();