blob: af9d89181cc85ac8b3c3529d31092744e84942d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- runtime/ops/tty.rs.orig 2020-12-14 21:25:05 UTC
+++ runtime/ops/tty.rs
@@ -227,7 +227,7 @@ fn op_console_size(
let fd = std_file.as_raw_fd();
unsafe {
let mut size: libc::winsize = std::mem::zeroed();
- if libc::ioctl(fd, libc::TIOCGWINSZ, &mut size as *mut _) != 0 {
+ if libc::ioctl(fd, libc::TIOCGWINSZ.into(), &mut size as *mut _) != 0 {
return Err(Error::last_os_error().into());
}
|