Fix warning

This commit is contained in:
Olivier Goffart 2013-08-08 16:03:57 +02:00
parent cc6abfc366
commit 6655da9d24

View file

@ -239,7 +239,7 @@ void Folder::slotPollTimerTimeout()
qDebug() << "* Polling" << alias() << "for changes. Ignoring all pending events until now (time since next sync:" << (_timeSinceLastSync.elapsed() / 1000) << "s)";
_watcher->clearPendingEvents();
if (_timeSinceLastSync.elapsed() > MirallConfigFile().forceSyncInterval()) {
if (quint64(_timeSinceLastSync.elapsed()) > MirallConfigFile().forceSyncInterval()) {
qDebug() << "* Force Sync now";
evaluateSync(QStringList());
} else {