From f91f446823745927d8f8af195fa4c74685393b94 Mon Sep 17 00:00:00 2001 From: Thomas Zander Date: Sat, 29 May 2021 15:31:04 +0200 Subject: [PATCH] Fix cargo fmt diff. --- zellij-server/src/os_input_output.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/zellij-server/src/os_input_output.rs b/zellij-server/src/os_input_output.rs index 91a228e7..a104dda2 100644 --- a/zellij-server/src/os_input_output.rs +++ b/zellij-server/src/os_input_output.rs @@ -45,7 +45,9 @@ pub(crate) fn set_terminal_size_using_fd(fd: RawFd, columns: u16, rows: u16) { // some platforms. When checked on Linux, clippy will complain about // useless conversion. #[allow(clippy::useless_conversion)] - unsafe { ioctl(fd, TIOCSWINSZ.into(), &winsize) }; + unsafe { + ioctl(fd, TIOCSWINSZ.into(), &winsize) + }; } /// Handle some signals for the child process. This will loop until the child