aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon J. Gerraty <sjg@FreeBSD.org>2026-05-05 20:14:36 +0000
committerSimon J. Gerraty <sjg@FreeBSD.org>2026-05-05 20:14:36 +0000
commit8334d46162e46f400b04b93d79e310153380d643 (patch)
treeabe841a734e607b2c90ec28ffe5c838d059d2e06
parent7619d14d08a0036a07dce670f55b9568f8133b38 (diff)
Fix typo in curthread
-rw-r--r--sys/kern/sys_process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c
index 3a94f1c0ff20..487dc5d06614 100644
--- a/sys/kern/sys_process.c
+++ b/sys/kern/sys_process.c
@@ -74,7 +74,7 @@
#define PROC_PRIV_CHECK(priv) do { \
int _error; \
- _error = priv_check(currthread, priv); \
+ _error = priv_check(curthread, priv); \
if (_error) \
return (_error); \
} while (0)