mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 22:38:51 +00:00
Kernel: Fix all compiler warnings.
This commit is contained in:
parent
17acc1e0a8
commit
46a06c23e3
Notes:
sideshowbarker
2024-07-19 13:31:04 +09:00
Author: https://github.com/awesomekling
Commit: 46a06c23e3
13 changed files with 19 additions and 19 deletions
|
@ -139,8 +139,9 @@ ByteBuffer DiskBackedFS::read_blocks(unsigned index, unsigned count) const
|
|||
return blocks;
|
||||
}
|
||||
|
||||
void DiskBackedFS::set_block_size(unsigned block_size)
|
||||
void DiskBackedFS::set_block_size(int block_size)
|
||||
{
|
||||
ASSERT(block_size > 0);
|
||||
if (block_size == m_block_size)
|
||||
return;
|
||||
m_block_size = block_size;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue