diff --git a/Kernel/TTY/TTY.cpp b/Kernel/TTY/TTY.cpp index 6ffce4dbff..ac6fbc1a00 100644 --- a/Kernel/TTY/TTY.cpp +++ b/Kernel/TTY/TTY.cpp @@ -92,7 +92,6 @@ KResultOr TTY::read(FileDescription&, size_t, u8* buffer, size_t size) KResultOr TTY::write(FileDescription&, size_t, const u8* buffer, size_t size) { if (Process::current()->pgid() != pgid()) { - // FIXME: Should we propigate this error path somehow? (void)Process::current()->send_signal(SIGTTOU, nullptr); return KResult(-EINTR); }