From 403ea29250ea3ceec4f95094f61e420ad46bb48a Mon Sep 17 00:00:00 2001 From: WindSoilder Date: Tue, 2 Aug 2022 11:41:34 +0800 Subject: [PATCH] fix windows clippy --- crates/nu-system/src/foreground.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-system/src/foreground.rs b/crates/nu-system/src/foreground.rs index ca2aa3cb7e..a474b6aaea 100644 --- a/crates/nu-system/src/foreground.rs +++ b/crates/nu-system/src/foreground.rs @@ -107,5 +107,5 @@ mod fg_process_setup { pub fn set_foreground(_process: &std::process::Child) {} - pub fn reset_foreground_id() {} + pub unsafe fn reset_foreground_id() {} }