summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2020-12-17 21:58:10 +0000
committerBrooks Davis <brooks@FreeBSD.org>2020-12-17 21:58:10 +0000
commit52e63ec2f1ddf76c9411b6833bc5d021457b5005 (patch)
treec0db381caa2ddcfa98b5b911425e0a80cacb259c /share
parent03ffa2569570059fe872642d3d9451f4319662f1 (diff)
downloadsrc-test-52e63ec2f1ddf76c9411b6833bc5d021457b5005.tar.gz
src-test-52e63ec2f1ddf76c9411b6833bc5d021457b5005.zip
VFS_QUOTACTL: Remove needless casts of arg
The argument is a void * so there's no need to cast it to caddr_t. Update documentation to match function decleration. Reviewed by: freqlabs Obtained from: CheriBSD MFC after: 1 week Sponsored by: DARPA Differential Revision: https://reviews.freebsd.org/D27093
Notes
Notes: svn path=/head/; revision=368744
Diffstat (limited to 'share')
-rw-r--r--share/man/man9/VFS_QUOTACTL.94
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man9/VFS_QUOTACTL.9 b/share/man/man9/VFS_QUOTACTL.9
index fded4d6b883c6..8d0cb113ce1e3 100644
--- a/share/man/man9/VFS_QUOTACTL.9
+++ b/share/man/man9/VFS_QUOTACTL.9
@@ -28,7 +28,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd May 23, 2009
+.Dd December 17, 2020
.Dt VFS_QUOTACTL 9
.Os
.Sh NAME
@@ -39,7 +39,7 @@
.In sys/mount.h
.In sys/vnode.h
.Ft int
-.Fn VFS_QUOTACTL "struct mount *mp" "int cmds" "uid_t uid" "caddr_t arg"
+.Fn VFS_QUOTACTL "struct mount *mp" "int cmds" "uid_t uid" "void *arg"
.Sh DESCRIPTION
Implement file system quotas.
See