From c3926d39826a58d0f09bb2fc555ca8e0fb400870 Mon Sep 17 00:00:00 2001 From: D8G Official Date: Sat, 25 Jan 2025 19:00:45 +0700 Subject: [PATCH] ksud: Fix warning unused import (#2382) --- userspace/ksud/src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userspace/ksud/src/utils.rs b/userspace/ksud/src/utils.rs index 591f6a12..71ebc443 100644 --- a/userspace/ksud/src/utils.rs +++ b/userspace/ksud/src/utils.rs @@ -24,7 +24,7 @@ use std::path::PathBuf; #[cfg(any(target_os = "linux", target_os = "android"))] use rustix::{ process, - thread::{move_into_link_name_space, unshare, LinkNameSpaceType, UnshareFlags}, + thread::{move_into_link_name_space, LinkNameSpaceType}, }; pub fn ensure_clean_dir(dir: impl AsRef) -> Result<()> {