From: Timo Sirainen Date: Thu, 1 Jul 2010 17:29:21 +0000 (+0100) Subject: quota-fs: Compiler warning fix on some OSes. X-Git-Tag: 2.0.rc1~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e9665287d5e321fd2574a1f2c1a99a94a0d3f79;p=thirdparty%2Fdovecot%2Fcore.git quota-fs: Compiler warning fix on some OSes. --HG-- branch : HEAD --- diff --git a/src/plugins/quota/quota-fs.c b/src/plugins/quota/quota-fs.c index fa9e7daa33..9d48b0fb3d 100644 --- a/src/plugins/quota/quota-fs.c +++ b/src/plugins/quota/quota-fs.c @@ -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;