diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-03-29 15:00:09 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-03-29 15:00:09 +0800 |
| commit | 586c206e50bb8e9a1376f65975f1c9916b1cde7e (patch) | |
| tree | 7d416ad11b65ab27d3dbf056dfccc1c1cfcde4c4 /mingling/src/program/exec | |
| parent | 338361a8fca469745454e0f067c93739542d4ff0 (diff) | |
Apply clippy fixes
Diffstat (limited to 'mingling/src/program/exec')
| -rw-r--r-- | mingling/src/program/exec/error.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<ChainProcessError> 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()), } } } |
