From 2f4e7a6ce7c94594c42c98aa095466511e13a2b1 Mon Sep 17 00:00:00 2001 From: sxyazi Date: Wed, 12 Mar 2025 14:10:55 +0800 Subject: [PATCH] Fix CI --- yazi-shared/src/tty/handle.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yazi-shared/src/tty/handle.rs b/yazi-shared/src/tty/handle.rs index 44a8743c..4a4effce 100644 --- a/yazi-shared/src/tty/handle.rs +++ b/yazi-shared/src/tty/handle.rs @@ -156,9 +156,9 @@ impl Handle { } error!( - "Failed to open {}, falling back to stdin/stdout: {err}", + "Failed to open {}, falling back to stdin/stdout: {}", if out { "CONOUT$" } else { "CONIN$" }, - Error::last_os_error(), + Error::last_os_error() ); Self { inner: if out { stdout().as_raw_handle() } else { stdin().as_raw_handle() },