Fix possible compilation error on Windows

This commit is contained in:
Christophe Dumez 2012-05-02 17:34:44 +03:00
parent a69c3098e1
commit 86f2447f8a

View file

@ -1565,7 +1565,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
@ -1952,7 +1952,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()) {