rbutil: Fix some more issues found by clazy.

Change-Id: I0a1a849ecea4b4666b08ccb050eb17918e90a258
This commit is contained in:
Dominik Riebeling 2021-12-28 16:40:16 +01:00
parent 7dffbd84af
commit f53f1fbafa
10 changed files with 23 additions and 40 deletions

View file

@ -72,8 +72,7 @@ QString Sysinfo::getInfo(Sysinfo::InfoType type)
.arg(QDir::toNativeSeparators(drives.at(i)))
.arg((double)Utils::filesystemFree(drives.at(i)) / (1<<30), 0, 'f', 2)
.arg((double)Utils::filesystemTotal(drives.at(i)) / (1<<30), 0, 'f', 2)
.arg(Utils::filesystemName(drives.at(i)))
.arg(Utils::filesystemType(drives.at(i)));
.arg(Utils::filesystemName(drives.at(i)), Utils::filesystemType(drives.at(i)));
}
info += "</table>";
info += "<hr/>";