diff --git a/Kernel/Syscalls/fallocate.cpp b/Kernel/Syscalls/fallocate.cpp index 1a46b54d25..820d86301c 100644 --- a/Kernel/Syscalls/fallocate.cpp +++ b/Kernel/Syscalls/fallocate.cpp @@ -51,7 +51,6 @@ ErrorOr Process::sys$posix_fallocate(int fd, Userspace us // truncate instead TRY(file.inode().truncate(checked_size.value())); - // FIXME: ENOSPC: There is not enough space left on the device containing the file referred to by fd. // FIXME: EINTR: A signal was caught during execution. return 0; }