mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-05 07:41:01 +00:00
Kernel: Make FS::block_size a size_t
This commit is contained in:
parent
9cbdd5f01e
commit
de4b7d9c21
Notes:
sideshowbarker
2024-07-19 06:28:51 +09:00
Author: https://github.com/bugaevc
Commit: de4b7d9c21
Pull-request: https://github.com/SerenityOS/serenity/pull/2288
Reviewed-by: https://github.com/awesomekling
3 changed files with 5 additions and 5 deletions
|
@ -742,7 +742,7 @@ Optional<KBuffer> procfs$df(InodeIdentifier)
|
|||
fs_object.add("total_inode_count", fs.total_inode_count());
|
||||
fs_object.add("free_inode_count", fs.free_inode_count());
|
||||
fs_object.add("mount_point", mount.absolute_path());
|
||||
fs_object.add("block_size", fs.block_size());
|
||||
fs_object.add("block_size", static_cast<u64>(fs.block_size()));
|
||||
fs_object.add("readonly", fs.is_readonly());
|
||||
fs_object.add("mount_flags", mount.flags());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue