mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-30 03:28:41 -07:00
Fix signed/unsigned integers comparison warning
This commit is contained in:
parent
a97543d258
commit
e146c2f227
1 changed files with 1 additions and 1 deletions
|
@ -474,7 +474,7 @@ int Feed::updateArticles(const QList<QVariantHash> &loadedArticles)
|
|||
return (a1.first > a2.first);
|
||||
});
|
||||
|
||||
if (sortData.size() > m_session->maxArticlesPerFeed())
|
||||
if (sortData.size() > static_cast<uint>(m_session->maxArticlesPerFeed()))
|
||||
sortData.resize(m_session->maxArticlesPerFeed());
|
||||
|
||||
int newArticlesCount = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue