]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
quots-fs: Fixed compiling with HP/UX and Solaris
authorTimo Sirainen <timo.sirainen@dovecot.fi>
Sun, 21 Feb 2016 15:44:38 +0000 (17:44 +0200)
committerTimo Sirainen <timo.sirainen@dovecot.fi>
Sun, 21 Feb 2016 15:44:38 +0000 (17:44 +0200)
src/plugins/quota/quota-fs.c

index 24c2d860c39b4e7863da8256c6cc2792ead78acf..8d46fdbaa5a6a9b3539815df5b706f302334038c 100644 (file)
@@ -812,9 +812,9 @@ fs_quota_get_resources(struct fs_quota_root *root, bool group,
                return 0;
        }
 #ifdef FS_QUOTA_HPUX
-       return fs_quota_get_hpux(root, bytes, bytes_value_r, bytes_limit_r, count_value_r, count_limit_r);
+       return fs_quota_get_hpux(root, bytes_value_r, bytes_limit_r, count_value_r, count_limit_r);
 #else
-       return fs_quota_get_solaris(root, bytes, bytes_value_r, bytes_limit_r, count_value_r, count_limit_r);
+       return fs_quota_get_solaris(root, bytes_value_r, bytes_limit_r, count_value_r, count_limit_r);
 #endif
 #endif
 }