mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 22:33:08 +00:00
all_mask is a value of type sigset_t, which is defined as an array type [N]u32. However, all_mask references sigset_t.len, but, the array type does not have a len field. Fix is to use @typeInfo(sigset_t).Array.len instead.