mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:27:35 +00:00
Kernel: Use u64 instead of size_t for File::can_read offset
This ensures offsets will not be truncated on large files on i686.
This commit is contained in:
parent
0c630d5687
commit
9ce537d703
47 changed files with 47 additions and 47 deletions
|
@ -184,7 +184,7 @@ void SB16::set_irq_line(u8 irq_number)
|
|||
change_irq_number(irq_number);
|
||||
}
|
||||
|
||||
bool SB16::can_read(OpenFileDescription const&, size_t) const
|
||||
bool SB16::can_read(OpenFileDescription const&, u64) const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue