summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-09-06 19:38:20 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-09-06 19:38:20 +0000
commit11cebf79245d373cc7a70e7f78fff2b465e010f2 (patch)
tree572216dee802e8abf7483a1e30e08a33c81f67f2 /sys
parentf42538f9c911b4e2d78d13c7513f2f8c276bdd1f (diff)
no , at end of enum
Diffstat (limited to 'sys')
-rw-r--r--sys/ufs/ufs/quota.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/ufs/ufs/quota.h b/sys/ufs/ufs/quota.h
index 16928001b9b..f652dd73a6b 100644
--- a/sys/ufs/ufs/quota.h
+++ b/sys/ufs/ufs/quota.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: quota.h,v 1.4 2002/03/14 01:27:15 millert Exp $ */
+/* $OpenBSD: quota.h,v 1.5 2002/09/06 19:38:19 deraadt Exp $ */
/* $NetBSD: quota.h,v 1.6 1995/03/26 20:38:17 jtc Exp $ */
/*
@@ -115,9 +115,9 @@ struct dqblk {
* Flargs to ufs_quota_{alloc,free}_{blocks,inode}2
*/
enum ufs_quota_flags {
- UFS_QUOTA_NOUID = 0x1, /* Don't change UID quota */
- UFS_QUOTA_NOGID = 0x2, /* Don't change GID quota */
- UFS_QUOTA_FORCE = 0x1000, /* don't check limits - just change it */
+ UFS_QUOTA_NOUID = 0x1, /* Don't change UID quota */
+ UFS_QUOTA_NOGID = 0x2, /* Don't change GID quota */
+ UFS_QUOTA_FORCE = 0x1000 /* don't check limits - just change it */
}; /* Change GID */
#include <sys/cdefs.h>