mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-08-26 13:42:37 +00:00
Fix possible compilation error on Windows
This commit is contained in:
parent
33a0828a33
commit
82e2b3a6cd
@ -1546,7 +1546,7 @@ void QBtSession::loadSessionState() {
|
|||||||
// bdecode
|
// bdecode
|
||||||
lazy_entry e;
|
lazy_entry e;
|
||||||
#if LIBTORRENT_VERSION_MINOR > 15
|
#if LIBTORRENT_VERSION_MINOR > 15
|
||||||
error_code ec;
|
libtorrent::error_code ec;
|
||||||
lazy_bdecode(&in[0], &in[0] + in.size(), e, ec);
|
lazy_bdecode(&in[0], &in[0] + in.size(), e, ec);
|
||||||
if (!ec) {
|
if (!ec) {
|
||||||
#else
|
#else
|
||||||
@ -1898,7 +1898,7 @@ void QBtSession::setListeningPort(int port) {
|
|||||||
Preferences pref;
|
Preferences pref;
|
||||||
std::pair<int,int> ports(port, port);
|
std::pair<int,int> ports(port, port);
|
||||||
#if LIBTORRENT_VERSION_MINOR > 15
|
#if LIBTORRENT_VERSION_MINOR > 15
|
||||||
error_code ec;
|
libtorrent::error_code ec;
|
||||||
#endif
|
#endif
|
||||||
const QString iface_name = pref.getNetworkInterface();
|
const QString iface_name = pref.getNetworkInterface();
|
||||||
if (iface_name.isEmpty()) {
|
if (iface_name.isEmpty()) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user