mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:17:44 +00:00
Kernel: Fix handful of remaining "return -EFOO" mistakes
Now that all KResult and KResultOr are used consistently throughout the kernel, it's no longer necessary to return negative error codes. However, we were still doing that in some places, so let's fix all those (bugs) by removing the minuses. :^)
This commit is contained in:
parent
3377cc74df
commit
ad3ae7e0e8
8 changed files with 10 additions and 10 deletions
|
@ -465,7 +465,7 @@ KResult TTY::ioctl(FileDescription&, unsigned request, Userspace<void*> arg)
|
|||
// FIXME: When should we block things?
|
||||
// How do we make this work together with MasterPTY forwarding to us?
|
||||
if (current_process.tty() && current_process.tty() != this) {
|
||||
return -ENOTTY;
|
||||
return ENOTTY;
|
||||
}
|
||||
#endif
|
||||
switch (request) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue