summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index e9c420d..65f1e52 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -37,7 +37,7 @@ struct Opt {
}
#[tokio::main]
-async fn async_main(opt: Opt) -> anyhow::Result<i32> {
+async fn async_main(opt: Opt) -> Result<i32> {
if let Some(command) = opt.command {
let mut shell_write = opt.status_fd.and_then(|fd| {
nix::sys::stat::fstat(fd).ok().map(|_| {