From 2a283e67939d87ee909b8ffd538e2587bb39d865 Mon Sep 17 00:00:00 2001 From: ShirkNeko <109797057+ShirkNeko@users.noreply.github.com> Date: Mon, 7 Apr 2025 21:35:44 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E5=A4=8Dunload=5Fkpm=E5=87=BD?= =?UTF-8?q?=E6=95=B0=E7=9A=84=E5=AE=9A=E4=B9=89=EF=BC=8C=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E7=BC=BA=E5=A4=B1=E7=9A=84fn=E5=85=B3=E9=94=AE=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- userspace/ksud/src/kpm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userspace/ksud/src/kpm.rs b/userspace/ksud/src/kpm.rs index 39ae46a2..f591c863 100644 --- a/userspace/ksud/src/kpm.rs +++ b/userspace/ksud/src/kpm.rs @@ -44,7 +44,7 @@ pub fn load_kpm(path: &Path) -> Result<()> { Ok(()) } -pub unload_kpm(name: &str) -> Result<()> { +pub fn unload_kpm(name: &str) -> Result<()> { let status = std::process::Command::new("/data/adb/ksu/bin/kpmmgr") .args(["unload", name]) .status()?;