From 11c685e34a13bf4ee843d5740ecac23f45e7bd44 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 21 Feb 2016 17:44:38 +0200 Subject: [PATCH] quots-fs: Fixed compiling with HP/UX and Solaris --- src/plugins/quota/quota-fs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/quota/quota-fs.c b/src/plugins/quota/quota-fs.c index 24c2d860c3..8d46fdbaa5 100644 --- a/src/plugins/quota/quota-fs.c +++ b/src/plugins/quota/quota-fs.c @@ -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 } -- 2.47.3