mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-21 18:00:16 +00:00
Kernel: Remove various other uses of ssize_t
This commit is contained in:
parent
ca3cae81eb
commit
bc3076f894
Notes:
sideshowbarker
2024-07-18 12:10:14 +09:00
Author: https://github.com/gunnarbeutner
Commit: bc3076f894
Pull-request: https://github.com/SerenityOS/serenity/pull/8093
Reviewed-by: https://github.com/awesomekling
33 changed files with 123 additions and 129 deletions
|
@ -541,7 +541,7 @@ PageFaultResponse Region::handle_inode_fault(size_t page_index_in_region, Scoped
|
|||
// Reading the page may block, so release the MM lock temporarily
|
||||
mm_lock.unlock();
|
||||
|
||||
KResultOr<ssize_t> result(KSuccess);
|
||||
KResultOr<size_t> result(KSuccess);
|
||||
{
|
||||
ScopedLockRelease release_paging_lock(vmobject().m_paging_lock);
|
||||
auto buffer = UserOrKernelBuffer::for_kernel_buffer(page_buffer);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue