diff options
author | Linus Groh <mail@linusgroh.de> | 2022-08-17 21:03:04 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-08-17 22:56:51 +0200 |
commit | 146903a3b5d4b156facc61ed5f8fe453c2874ff1 (patch) | |
tree | abe046a39db1bb7ba832a1b64c98cbfe48a7c024 /Kernel/Syscalls/poll.cpp | |
parent | 0db5f62f5733eed123eb9492a5a1c95b0b279e55 (diff) | |
download | serenity-146903a3b5d4b156facc61ed5f8fe453c2874ff1.zip |
Kernel: Require semicolon after VERIFY_{NO_,}PROCESS_BIG_LOCK_ACQUIRED
This matches out general macro use, and specifically other verification
macros like VERIFY(), VERIFY_NOT_REACHED(), VERIFY_INTERRUPTS_ENABLED(),
and VERIFY_INTERRUPTS_DISABLED().
Diffstat (limited to 'Kernel/Syscalls/poll.cpp')
-rw-r--r-- | Kernel/Syscalls/poll.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/poll.cpp b/Kernel/Syscalls/poll.cpp index 731540b0f5..68d963ef7b 100644 --- a/Kernel/Syscalls/poll.cpp +++ b/Kernel/Syscalls/poll.cpp @@ -16,7 +16,7 @@ using BlockFlags = Thread::FileBlocker::BlockFlags; ErrorOr<FlatPtr> Process::sys$poll(Userspace<Syscall::SC_poll_params const*> user_params) { - VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this) + VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this); TRY(require_promise(Pledge::stdio)); auto params = TRY(copy_typed_from_user(user_params)); |