mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-14 10:37:06 -07:00
Fix compilation on ARM. Closes #2204.
This commit is contained in:
parent
8882895f5e
commit
da9396ca94
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ Sample<qreal> SpeedSample::average() const
|
|||
if (m_speedSamples.empty())
|
||||
return Sample<qreal>();
|
||||
|
||||
return Sample<qreal>(m_sum) * (1. / m_speedSamples.size());
|
||||
return Sample<qreal>(m_sum) * (qreal(1.) / m_speedSamples.size());
|
||||
}
|
||||
|
||||
void TorrentSpeedMonitor::removeSamples(const QTorrentHandle& h) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue