summaryrefslogtreecommitdiff
path: root/Userland/DevTools/UserspaceEmulator
diff options
context:
space:
mode:
authorBrendan Coles <bcoles@gmail.com>2021-03-15 13:56:28 +0000
committerAndreas Kling <kling@serenityos.org>2021-03-15 16:07:31 +0100
commit7156b61d579d47636ad57ec0cf127258f65b50a6 (patch)
treeefc353dfe61823e10d6a889ae8904533195b81df /Userland/DevTools/UserspaceEmulator
parent7276511833e6594784e56592585bf8fdf381f398 (diff)
downloadserenity-7156b61d579d47636ad57ec0cf127258f65b50a6.zip
UserspaceEmulator: downgrade TODO to dbgln for invalid fcntl cmd arg
Diffstat (limited to 'Userland/DevTools/UserspaceEmulator')
-rw-r--r--Userland/DevTools/UserspaceEmulator/Emulator_syscalls.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/UserspaceEmulator/Emulator_syscalls.cpp b/Userland/DevTools/UserspaceEmulator/Emulator_syscalls.cpp
index f95d4ea810..f40043fa09 100644
--- a/Userland/DevTools/UserspaceEmulator/Emulator_syscalls.cpp
+++ b/Userland/DevTools/UserspaceEmulator/Emulator_syscalls.cpp
@@ -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);