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/ioctl.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/ioctl.cpp')
-rw-r--r-- | Kernel/Syscalls/ioctl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/ioctl.cpp b/Kernel/Syscalls/ioctl.cpp index ccbe9d7681..029fe9d53f 100644 --- a/Kernel/Syscalls/ioctl.cpp +++ b/Kernel/Syscalls/ioctl.cpp @@ -13,7 +13,7 @@ namespace Kernel { ErrorOr<FlatPtr> Process::sys$ioctl(int fd, unsigned request, FlatPtr arg) { - VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this) + VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this); auto description = TRY(open_file_description(fd)); if (request == FIONBIO) { description->set_blocking(TRY(copy_typed_from_user(Userspace<int const*>(arg))) == 0); |