Commit a9be62f085

LemonBoy <thatlemon@gmail.com>
2019-09-26 11:49:49
Fix wrong IOCTL value
1 parent 4ebcf64
Changed files (1)
lib
std
os
lib/std/os/bits/linux.zig
@@ -524,7 +524,7 @@ pub const TIOCSPGRP = 0x5410;
 pub const TIOCOUTQ = if (is_mips) 0x7472 else 0x5411;
 pub const TIOCSTI = 0x5412;
 pub const TIOCGWINSZ = if (is_mips) 0x40087468 else 0x5413;
-pub const TIOCSWINSZ = if (is_mips) 0x40087467 else 0x5414;
+pub const TIOCSWINSZ = if (is_mips) 0x80087467 else 0x5414;
 pub const TIOCMGET = 0x5415;
 pub const TIOCMBIS = 0x5416;
 pub const TIOCMBIC = 0x5417;