Skip to content

Commit

Permalink
quots-fs: Fixed compiling with HP/UX and Solaris
Browse files Browse the repository at this point in the history
  • Loading branch information
sirainen committed Feb 21, 2016
1 parent bb5cede commit 11c685e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/quota/quota-fs.c
Expand Up @@ -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
}
Expand Down

0 comments on commit 11c685e

Please sign in to comment.