vfs: use unsigned 64bit for media size ioctl

Fixes #2523.
This commit is contained in:
Josef Söntgen 2017-09-19 11:40:30 +02:00 committed by Christian Helmuth
parent 3f37a12e2d
commit e1ada57bfa

View File

@ -132,7 +132,7 @@ struct Vfs::File_io_service
/* if request was 'IOCTL_OP_DIOCGMEDIASIZE' */ /* if request was 'IOCTL_OP_DIOCGMEDIASIZE' */
struct { struct {
/* disk size rounded up to sector size in bytes*/ /* disk size rounded up to sector size in bytes*/
int size; file_size size;
} diocgmediasize; } diocgmediasize;
}; };