diff options
-rw-r--r-- | lib/libc/sys/quotactl.2 | 2 | ||||
-rw-r--r-- | sys/ufs/ufs/quota.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/sys/quotactl.2 b/lib/libc/sys/quotactl.2 index ac6d912..b14932e 100644 --- a/lib/libc/sys/quotactl.2 +++ b/lib/libc/sys/quotactl.2 @@ -44,7 +44,7 @@ .Fd #include <sys/types.h> .Fd #include <ufs/ufs/quota.h> .Ft int -.Fn quotactl "const char *path" "int cmd" "int id" "char *addr" +.Fn quotactl "const char *path" "int cmd" "int id" "void *addr" .Sh DESCRIPTION The .Fn quotactl diff --git a/sys/ufs/ufs/quota.h b/sys/ufs/ufs/quota.h index 1204a55..1944e40 100644 --- a/sys/ufs/ufs/quota.h +++ b/sys/ufs/ufs/quota.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)quota.h 8.3 (Berkeley) 8/19/94 - * $Id: quota.h,v 1.10 1997/02/22 09:47:43 peter Exp $ + * $Id: quota.h,v 1.11 1997/07/13 15:43:54 bde Exp $ */ #ifndef _UFS_UFS_QUOTA_H_ @@ -196,7 +196,7 @@ int ufs_quotactl __P((struct mount *, int, uid_t, caddr_t, struct proc *)); #include <sys/cdefs.h> __BEGIN_DECLS -int quotactl __P((const char *, int, int, char *)); +int quotactl __P((const char *, int, int, void *)); __END_DECLS #endif /* KERNEL */ |