diff options
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/Kernel/fuzz-syscalls.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Kernel/fuzz-syscalls.cpp b/Tests/Kernel/fuzz-syscalls.cpp index 8a1239ebc3..2ca2878bd0 100644 --- a/Tests/Kernel/fuzz-syscalls.cpp +++ b/Tests/Kernel/fuzz-syscalls.cpp @@ -44,7 +44,7 @@ static bool is_bad_idea(int fn, size_t const* direct_sc_args, size_t const* fake // FIXME: Known bug: https://github.com/SerenityOS/serenity/issues/5328 return direct_sc_args[0] == 1; case SC_write: - case SC_writev: + case SC_pwritev: // FIXME: Known bug: https://github.com/SerenityOS/serenity/issues/5328 return direct_sc_args[0] == 0; case SC_pledge: |