Suppress compiler warning

The debug message is emitting a format mismatch warning.
Fixup 4880dc812c.

And add curly brackets to if statement.
This commit is contained in:
Chocobo1 2019-06-20 19:49:19 +08:00
parent e31c1ca780
commit 11fdf91196
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -1538,13 +1538,12 @@ void Session::processShareLimits()
if (torrent->seedingTimeLimit() != TorrentHandle::NO_SEEDING_TIME_LIMIT) {
const qlonglong seedingTimeInMinutes = torrent->seedingTime() / 60;
int seedingTimeLimit = torrent->seedingTimeLimit();
if (seedingTimeLimit == TorrentHandle::USE_GLOBAL_SEEDING_TIME)
if (seedingTimeLimit == TorrentHandle::USE_GLOBAL_SEEDING_TIME) {
// If Global Seeding Time Limit is really set...
seedingTimeLimit = globalMaxSeedingMinutes();
}
if (seedingTimeLimit >= 0) {
qDebug("Seeding Time: %d (limit: %d)", seedingTimeInMinutes, seedingTimeLimit);
if ((seedingTimeInMinutes <= TorrentHandle::MAX_SEEDING_TIME) && (seedingTimeInMinutes >= seedingTimeLimit)) {
Logger *const logger = Logger::instance();
if (m_maxRatioAction == Remove) {