This commit is contained in:
Jonas Kvinge
2024-06-12 18:11:43 +02:00
parent 7b00385155
commit 57fb52e8f0
4 changed files with 7 additions and 7 deletions

View File

@@ -59,7 +59,7 @@ QString PrettyTimeNanosec(const qint64 nanoseconds) {
QString WordyTime(const quint64 seconds) {
quint64 days = seconds / (60 * 60 * 24);
quint64 days = seconds / (60LL * 60LL * 24LL);
// TODO: Make the plural rules translatable
QStringList parts;