diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-06 11:50:23 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-06 11:50:23 -0600 |
commit | 0fec22d4106ff6f80296d1511eec7a82160c2245 (patch) | |
tree | 38c506e7cb7905245ee4fd363c22e107a646e07b | |
parent | ef3adc0d857cc0df7579ee66b7d25172ca8af2e1 (diff) |
Fix for GCC 15
-rw-r--r-- | libhw_cr/host_net.c | 2 |
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, \ |