diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2016-12-01 11:37:41 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2016-12-01 11:39:04 +0200 |
commit | 9a8ebe523ee7f83d14e1a68837e6152be3415119 (patch) | |
tree | cfdaaf974d6a39282f511377362ca161dcf6b684 | |
parent | c04ff511a0d4692743326c49a934f92e0e3cadee (diff) | |
download | rpm-9a8ebe523ee7f83d14e1a68837e6152be3415119.tar.gz |
Fix missing @param in rpmfilesVerify() and rpmfiVerify() doxygen doco
-rw-r--r-- | lib/rpmfi.h | 2 | ||||
-rw-r--r-- | lib/rpmfiles.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/rpmfi.h b/lib/rpmfi.h index 2668b0fd2..6ef70cd28 100644 --- a/lib/rpmfi.h +++ b/lib/rpmfi.h @@ -385,7 +385,7 @@ int rpmfiCompare(const rpmfi afi, const rpmfi bfi); /** \ingroup rpmfi * Verify file attributes (including digest). * @param fi file info iterator - * @omitMask bit(s) to disable verify checks + * @param omitMask bit(s) to disable verify checks * @return bit(s) to indicate failure (ie 0 for passed verify) */ rpmVerifyAttrs rpmfiVerify(rpmfi fi, rpmVerifyAttrs omitMask); diff --git a/lib/rpmfiles.h b/lib/rpmfiles.h index 61765acb2..961adf6f9 100644 --- a/lib/rpmfiles.h +++ b/lib/rpmfiles.h @@ -501,7 +501,7 @@ int rpmfilesStat(rpmfiles fi, int ix, int flags, struct stat *sb); * Verify file attributes (including digest). * @param fi file info set * @param ix file index - * @omitMask bit(s) to disable verify checks + * @param omitMask bit(s) to disable verify checks * @return bit(s) to indicate failure (ie 0 for passed verify) */ rpmVerifyAttrs rpmfilesVerify(rpmfiles fi, int ix, rpmVerifyAttrs omitMask); |