diff options
Diffstat (limited to 'runtime/ops/spawn.rs')
-rw-r--r-- | runtime/ops/spawn.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/ops/spawn.rs b/runtime/ops/spawn.rs index a6930b485..b337f2488 100644 --- a/runtime/ops/spawn.rs +++ b/runtime/ops/spawn.rs @@ -76,7 +76,7 @@ pub struct ChildStatus { signal: Option<String>, } -impl TryFrom<std::process::ExitStatus> for ChildStatus { +impl TryFrom<ExitStatus> for ChildStatus { type Error = AnyError; fn try_from(status: ExitStatus) -> Result<Self, Self::Error> { |