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
Ahmad Samir 2023-03-25 23:40:41 +02:00
parent 5a182d35e2
commit 41201f9d65
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ public:
qint64 bytesTotal;
qint64 bytesFree;
qint64 bytesAvailable;
int blockSize;
ulong blockSize;
bool readOnly;
bool ready;