summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-05-06 11:50:23 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-05-06 11:50:23 -0600
commit0fec22d4106ff6f80296d1511eec7a82160c2245 (patch)
tree38c506e7cb7905245ee4fd363c22e107a646e07b
parentef3adc0d857cc0df7579ee66b7d25172ca8af2e1 (diff)
Fix for GCC 15
-rw-r--r--libhw_cr/host_net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhw_cr/host_net.c b/libhw_cr/host_net.c
index ba634a6..03cf7db 100644
--- a/libhw_cr/host_net.c
+++ b/libhw_cr/host_net.c
@@ -68,7 +68,7 @@ static void hostnet_init(void) {
#define WAKE_COROUTINE(args) do { \
int r; \
- union sigval val = {0}; \
+ union sigval val = {}; \
val.sival_int = (int)((args)->cr_coroutine); \
do { \
r = pthread_sigqueue((args)->cr_thread, \