mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:28:12 +00:00
Kernel: Stop allowing implicit conversion from KResult to int
This patch removes KResult::operator int() and deals with the fallout. This forces a lot of code to be more explicit in its handling of errors, greatly improving readability.
This commit is contained in:
parent
d30d776ca4
commit
7676edfb9b
14 changed files with 51 additions and 52 deletions
|
@ -216,7 +216,7 @@ NEVER_INLINE void syscall_handler(TrapFrame* trap)
|
|||
auto result = Syscall::handle(regs, function, arg1, arg2, arg3, arg4);
|
||||
|
||||
if (result.is_error()) {
|
||||
regs.set_return_reg(result.error());
|
||||
regs.set_return_reg(result.error().error());
|
||||
} else {
|
||||
regs.set_return_reg(result.value());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue