summaryrefslogtreecommitdiff
path: root/mingling/src/program/exec
diff options
context:
space:
mode:
Diffstat (limited to 'mingling/src/program/exec')
-rw-r--r--mingling/src/program/exec/error.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/mingling/src/program/exec/error.rs b/mingling/src/program/exec/error.rs
index 8ce16ff..fe66e22 100644
--- a/mingling/src/program/exec/error.rs
+++ b/mingling/src/program/exec/error.rs
@@ -38,7 +38,9 @@ impl From<ChainProcessError> for ProgramInternalExecuteError {
match value {
ChainProcessError::Other(s) => ProgramInternalExecuteError::Other(s),
ChainProcessError::IO(error) => ProgramInternalExecuteError::IO(error),
- ChainProcessError::Broken(_) => ProgramInternalExecuteError::Other("Broken".to_string()),
+ ChainProcessError::Broken(_) => {
+ ProgramInternalExecuteError::Other("Broken".to_string())
+ }
}
}
}