QStorageInfo/Unix: fix narrowing conversion warning
"blocksize" is assigned the value of statvfs::f_bsize, the latter is unsigned long. Change-Id: I55453b861d0c127d1e8d8a367347de926a7cbbca Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>bb10
parent
5a182d35e2
commit
41201f9d65
|
|
@ -58,7 +58,7 @@ public:
|
|||
qint64 bytesTotal;
|
||||
qint64 bytesFree;
|
||||
qint64 bytesAvailable;
|
||||
int blockSize;
|
||||
ulong blockSize;
|
||||
|
||||
bool readOnly;
|
||||
bool ready;
|
||||
|
|
|
|||
Loading…
Reference in New Issue