From 3ae2630fa2a8748aa0b589ce86937213c6207c3f Mon Sep 17 00:00:00 2001 From: arvidn Date: Thu, 2 Feb 2017 23:09:54 -0500 Subject: [PATCH] fix merge issue --- src/torrent_handle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/torrent_handle.cpp b/src/torrent_handle.cpp index bc08aed97..16cfe5974 100644 --- a/src/torrent_handle.cpp +++ b/src/torrent_handle.cpp @@ -359,7 +359,7 @@ namespace libtorrent { TORRENT_ASSERT_PRECOND(p >= 0); if (p < 0) return; - TORRENT_ASYNC_CALL1(set_queue_position, p); + async_call(&torrent::set_queue_position, p); } void torrent_handle::queue_position_top() const