fix incorrect use of make_tick_handler

This commit is contained in:
arvidn 2017-12-01 16:11:35 +01:00 committed by Arvid Norberg
parent 4b467f82ac
commit c745d3f00d
1 changed files with 1 additions and 1 deletions

View File

@ -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()