]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
quota-fs: Compiler warning fix on some OSes.
authorTimo Sirainen <tss@iki.fi>
Thu, 1 Jul 2010 17:29:21 +0000 (18:29 +0100)
committerTimo Sirainen <tss@iki.fi>
Thu, 1 Jul 2010 17:29:21 +0000 (18:29 +0100)
--HG--
branch : HEAD

src/plugins/quota/quota-fs.c

index fa9e7daa338b2783cef54b0555307db68b275cc3..9d48b0fb3d2516da1391773194672c12b3f07925 100644 (file)
@@ -416,8 +416,9 @@ static int do_rquota_user(struct fs_quota_root *root, bool bytes,
        }
 }
 
-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;