1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-26 17:55:19 +03:00

Fix macosx compile

This commit is contained in:
3djc 2019-05-16 08:32:56 +02:00
parent a249474a78
commit d7119b170d

View file

@ -171,7 +171,7 @@ void SyncProcess::run()
void SyncProcess::finish()
{
const lldiv_t elapsed = std::lldiv(m_startTime.secsTo(QDateTime::currentDateTime()), 60);
const lldiv_t elapsed = lldiv(m_startTime.secsTo(QDateTime::currentDateTime()), 60);
QString endStr = testRunStr;
if (m_stat.index < m_stat.count)
endStr.append(tr("Synchronization aborted at %1 of %2 files.").arg(m_stat.index).arg(m_stat.count));