forked from premiere/premiere-libtorrent
fix incorrect use of make_tick_handler
This commit is contained in:
parent
4b467f82ac
commit
c745d3f00d
|
@ -5395,7 +5395,7 @@ retry:
|
|||
}
|
||||
error_code ec;
|
||||
m_close_file_timer.expires_from_now(seconds(interval), ec);
|
||||
m_close_file_timer.async_wait(make_tick_handler(boost::bind(&session_impl::on_close_file, this, _1)));
|
||||
m_close_file_timer.async_wait(boost::bind(&session_impl::on_close_file, this, _1));
|
||||
}
|
||||
|
||||
void session_impl::update_proxy()
|
||||
|
|
Loading…
Reference in New Issue