ports/www/deno/files/patch-runtime_ops_tty.rs
2023-06-03 10:16:11 +02:00

11 lines
431 B
Rust

--- runtime/ops/tty.rs.orig 2020-12-14 21:25:05 UTC
+++ runtime/ops/tty.rs
@@ -316,7 +316,7 @@ fn console_size_from_fd(
// SAFETY: libc calls
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());
}
Ok(ConsoleSize {