1
0
Fork 0
forked from len0rd/rockbox

rbutil: Remove unnecessary (and implicit) type conversion.

This commit is contained in:
Dominik Riebeling 2020-06-21 09:40:18 +02:00
parent 1ed283de9c
commit 46d06f71dc

View file

@ -224,7 +224,7 @@ qulonglong Utils::filesystemClusterSize(QString path)
qulonglong Utils::filesystemSize(QString path, enum Utils::Size type)
{
qlonglong size = 0;
qulonglong size = 0;
#if defined(Q_OS_LINUX) || defined(Q_OS_MACX)
// the usage of statfs() is deprecated by the LSB so use statvfs().
struct statvfs fs;