Fix a compilation problem with async_std.

Thank you, CI!
This commit is contained in:
Nick Mathewson 2021-04-13 17:11:43 -04:00
parent 13d4ee888f
commit d60cf6ace6
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ pub(crate) async fn download(
state = state.reset()?;
continue 'next_state;
}
_ = tor_rtcompat::timer::sleep(delay).fuse() => {}
_ = FutureExt::fuse(tor_rtcompat::timer::sleep(delay)) => {}
};
}
}