From ceef26a11a708c01d46e72c3577d0ec9ab4df7cb Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 10 Mar 2024 14:38:49 +0900 Subject: [PATCH] Format with rustfmt --- src/platform/unix/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platform/unix/mod.rs b/src/platform/unix/mod.rs index 0639321..91d7375 100644 --- a/src/platform/unix/mod.rs +++ b/src/platform/unix/mod.rs @@ -9,9 +9,9 @@ use crate::error::Error as CtrlcError; use nix::unistd; -use std::os::unix::io::RawFd; -use std::os::fd::IntoRawFd; use std::os::fd::BorrowedFd; +use std::os::fd::IntoRawFd; +use std::os::unix::io::RawFd; static mut PIPE: (RawFd, RawFd) = (-1, -1);