summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/sysconf.cpp
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-08-17 21:03:04 +0100
committerAndreas Kling <kling@serenityos.org>2022-08-17 22:56:51 +0200
commit146903a3b5d4b156facc61ed5f8fe453c2874ff1 (patch)
treeabe046a39db1bb7ba832a1b64c98cbfe48a7c024 /Kernel/Syscalls/sysconf.cpp
parent0db5f62f5733eed123eb9492a5a1c95b0b279e55 (diff)
downloadserenity-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/sysconf.cpp')
-rw-r--r--Kernel/Syscalls/sysconf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/sysconf.cpp b/Kernel/Syscalls/sysconf.cpp
index b2cbd5e08c..0f471460ef 100644
--- a/Kernel/Syscalls/sysconf.cpp
+++ b/Kernel/Syscalls/sysconf.cpp
@@ -12,7 +12,7 @@ namespace Kernel {
ErrorOr<FlatPtr> Process::sys$sysconf(int name)
{
- VERIFY_NO_PROCESS_BIG_LOCK(this)
+ VERIFY_NO_PROCESS_BIG_LOCK(this);
switch (name) {
case _SC_MONOTONIC_CLOCK:
return 1;