commit 9ef16b36cecd19c96d553f6ef6d0613be86154ba (tree)
parent 7a41e2f40b3bb860f6d99b16164028cc86dacecd
Author: Linus Groh <mail@linusgroh.de>
Date: Sun, 11 Aug 2024 22:03:46 +0100
std.os.linux: Fix definition of tc_lflag_t on MIPS
Regressed in #21000.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/std/os/linux.zig b/lib/std/os/linux.zig
@@ -6573,7 +6573,7 @@ pub const tc_lflag_t = if (is_mips) packed struct(tcflag_t) {
PENDIN: bool = false,
TOSTOP: bool = false,
EXTPROC: bool = false,
- _17: u16 = 0,
+ _17: u15 = 0,
} else if (is_ppc) packed struct(tcflag_t) {
ECHOKE: bool = false,
ECHOE: bool = false,