aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/kern_acct.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_acct.c b/sys/kern/kern_acct.c
index d0f2845fe666..5811608fd616 100644
--- a/sys/kern/kern_acct.c
+++ b/sys/kern/kern_acct.c
@@ -400,7 +400,7 @@ acctwatch(a)
mtx_unlock(&acct_mtx);
return;
}
- (void)VFS_STATFS(savacctp->v_mount, &sb, (struct thread *)0);
+ (void)VFS_STATFS(savacctp->v_mount, &sb, curthread);
if (sb.f_bavail > acctresume * sb.f_blocks / 100) {
acctp = savacctp;
acctcred = savacctcred;
@@ -422,7 +422,7 @@ acctwatch(a)
mtx_unlock(&acct_mtx);
return;
}
- (void)VFS_STATFS(acctp->v_mount, &sb, (struct thread *)0);
+ (void)VFS_STATFS(acctp->v_mount, &sb, curthread);
if (sb.f_bavail <= acctsuspend * sb.f_blocks / 100) {
savacctp = acctp;
savacctflags = acctflags;