From c745d3f00dc649be1881c379a17aad7c14c81fc3 Mon Sep 17 00:00:00 2001 From: arvidn Date: Fri, 1 Dec 2017 16:11:35 +0100 Subject: [PATCH] fix incorrect use of make_tick_handler --- src/session_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/session_impl.cpp b/src/session_impl.cpp index 5048f612d..8a4f161a7 100644 --- a/src/session_impl.cpp +++ b/src/session_impl.cpp @@ -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()