summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-04-23 08:58:00 +0300
committerLars Wirzenius <liw@liw.fi>2021-04-23 08:58:00 +0300
commitb8c9a90868dba0da10a755bf29877908e94e1fec (patch)
treec7d66970deef4b0e4293ebd49c9e44a21f8131ed
parentaec6ce99b9582c936870fc274e9d5d5183ecf19d (diff)
downloadsummain-rs-b8c9a90868dba0da10a755bf29877908e94e1fec.tar.gz
handle
-rw-r--r--src/bin/summain.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/summain.rs b/src/bin/summain.rs
index 74c98a0..68ebebf 100644
--- a/src/bin/summain.rs
+++ b/src/bin/summain.rs
@@ -9,7 +9,8 @@ async fn main() -> anyhow::Result<()> {
opt.pathnames[..].sort();
for filename in opt.pathnames.iter() {
- report(&filename).await?;
+ let h = report(&filename);
+ h.await?;
}
Ok(())