changeset 11685:c27e9a035b67 HEAD

quota-fs: Compiler warning fix on some OSes.
author Timo Sirainen <tss@iki.fi>
date Thu, 01 Jul 2010 18:29:21 +0100
parents 9798d57644ba
children cfee7da47bf0
files src/plugins/quota/quota-fs.c
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/plugins/quota/quota-fs.c	Thu Jul 01 18:29:06 2010 +0100
+++ b/src/plugins/quota/quota-fs.c	Thu Jul 01 18:29:21 2010 +0100
@@ -416,8 +416,9 @@
 	}
 }
 
-static int do_rquota_group(struct fs_quota_root *root, bool bytes,
-			   uint64_t *value_r, uint64_t *limit_r)
+static int
+do_rquota_group(struct fs_quota_root *root ATTR_UNUSED, bool bytes ATTR_UNUSED,
+		uint64_t *value_r ATTR_UNUSED, uint64_t *limit_r ATTR_UNUSED)
 {
 #if defined(EXT_RQUOTAVERS) && defined(GRPQUOTA)
 	struct getquota_rslt result;