From 0bc0d489d6db9d30d11da9772199956f0e651101 Mon Sep 17 00:00:00 2001 From: rustdesk Date: Fri, 9 Dec 2022 19:12:49 +0800 Subject: [PATCH] remove useless debug info --- src/ipc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ipc.rs b/src/ipc.rs index 478094cf2..18a81398c 100644 --- a/src/ipc.rs +++ b/src/ipc.rs @@ -544,7 +544,7 @@ async fn check_pid(postfix: &str) { } } } - hbb_common::allow_err!(std::fs::remove_file(&Config::ipc_path(postfix))); + std::fs::remove_file(&Config::ipc_path(postfix)); } #[inline]