1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:47:45 +00:00

UserspaceEmulator: downgrade TODO to dbgln for invalid fcntl cmd arg

This commit is contained in:
Brendan Coles 2021-03-15 13:56:28 +00:00 committed by Andreas Kling
parent 7276511833
commit 7156b61d57

View file

@ -668,7 +668,7 @@ u32 Emulator::virt$fcntl(int fd, int cmd, u32 arg)
case F_ISTTY:
break;
default:
TODO();
dbgln("Invalid fcntl cmd: {}", cmd);
}
return syscall(SC_fcntl, fd, cmd, arg);