authorgravatar for carl@astholm.seCarl Åstholm <carl@astholm.se> 2026-04-13 22:27:24+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-04-16 12:34:49+02:00
log2eda0ef8f075aa24fecdd792a523f260d9177ea8
tree7369eb423a4ef0e57f4fc7f34a4df28a4396e95a
parent88b68e6815077a71b10e7cbd801f1962fbce1405
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

Correct std.os.emscripten.W.STOPSIG return type


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/os/emscripten.zig+1-1
......@@ -211,7 +211,7 @@ pub const W = struct {
211211 pub fn TERMSIG(s: u32) SIG {
212212 return @enumFromInt(s & 0x7f);
213213 }
214 pub fn STOPSIG(s: u32) u32 {
214 pub fn STOPSIG(s: u32) SIG {
215215 return @enumFromInt(EXITSTATUS(s));
216216 }
217217 pub fn IFEXITED(s: u32) bool {