From 586c206e50bb8e9a1376f65975f1c9916b1cde7e Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 29 Mar 2026 15:00:09 +0800 Subject: Apply clippy fixes --- mingling/src/program/exec/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mingling/src/program/exec') diff --git a/mingling/src/program/exec/error.rs b/mingling/src/program/exec/error.rs index 0523ea5..8ce16ff 100644 --- a/mingling/src/program/exec/error.rs +++ b/mingling/src/program/exec/error.rs @@ -38,7 +38,7 @@ impl From for ProgramInternalExecuteError { match value { ChainProcessError::Other(s) => ProgramInternalExecuteError::Other(s), ChainProcessError::IO(error) => ProgramInternalExecuteError::IO(error), - ChainProcessError::Broken(_) => ProgramInternalExecuteError::Other(format!("Broken")), + ChainProcessError::Broken(_) => ProgramInternalExecuteError::Other("Broken".to_string()), } } } -- cgit