diff options
author | jbj <devnull@localhost> | 2003-01-20 23:52:04 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2003-01-20 23:52:04 +0000 |
commit | d6ea2fbf22bd4828bf30e2fd3248d2a191ce27d5 (patch) | |
tree | 0b077f1fbec5dd29e8dffc489750f41011101c91 /lib/rpmts.h | |
parent | fc1b33b66f0502ad1d9ccf0e3a2112e7aeb8b478 (diff) | |
download | librpm-tizen-d6ea2fbf22bd4828bf30e2fd3248d2a191ce27d5.tar.gz librpm-tizen-d6ea2fbf22bd4828bf30e2fd3248d2a191ce27d5.tar.bz2 librpm-tizen-d6ea2fbf22bd4828bf30e2fd3248d2a191ce27d5.zip |
Splint fiddles.
CVS patchset: 6018
CVS date: 2003/01/20 23:52:04
Diffstat (limited to 'lib/rpmts.h')
-rw-r--r-- | lib/rpmts.h | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/lib/rpmts.h b/lib/rpmts.h index 7f82e1e82..fb40a5c4c 100644 --- a/lib/rpmts.h +++ b/lib/rpmts.h @@ -80,8 +80,8 @@ struct diskspaceInfo_s { signed long bneeded; /*!< No. of blocks needed. */ signed long ineeded; /*!< No. of inodes needed. */ int bsize; /*!< File system block size. */ - signed long bavail; /*!< No. of blocks available. */ - signed long iavail; /*!< No. of inodes available. */ + signed long long bavail; /*!< No. of blocks available. */ + signed long long iavail; /*!< No. of inodes available. */ }; /** \ingroup rpmts @@ -796,23 +796,6 @@ uint_32 rpmtsSetColor(rpmts ts, uint_32 color) rpmte rpmtsSetRelocateElement(rpmts ts, /*@null@*/ rpmte relocateElement) /*@modifies ts @*/; -/** - * Retrieve color bits of transaction set. - * @param ts transaction set - * @return color bits - */ -uint_32 rpmtsColor(rpmts ts) - /*@*/; - -/** - * Set color bits of transaction set. - * @param ts transaction set - * @param color new color bits - * @return previous color bits - */ -uint_32 rpmtsSetColor(rpmts ts, uint_32 color) - /*@modifies ts @*/; - /** \ingroup rpmts * Set transaction notify callback function and argument. * |