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-15 11:53:58+02:00
log046002d1a5c9ed4155bc25c11307e96f7921de1c
tree745d47d28039eb8d9fa7325a003da74b9822e345
parent3016f875c31bc421b1276584adfff25fe3c0d207

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 {...@@ -211,7 +211,7 @@ pub const W = struct {
211 pub fn TERMSIG(s: u32) SIG {211 pub fn TERMSIG(s: u32) SIG {
212 return @enumFromInt(s & 0x7f);212 return @enumFromInt(s & 0x7f);
213 }213 }
214 pub fn STOPSIG(s: u32) u32 {214 pub fn STOPSIG(s: u32) SIG {
215 return @enumFromInt(EXITSTATUS(s));215 return @enumFromInt(EXITSTATUS(s));
216 }216 }
217 pub fn IFEXITED(s: u32) bool {217 pub fn IFEXITED(s: u32) bool {