diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-12-13 09:25:10 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-12-13 09:25:10 +0200 |
commit | c8f2927227471758abbdb36781d885b01798f0f8 (patch) | |
tree | d3fced97892138d64913efabcf3a0f58411457ea /lib/rpmts_internal.h | |
parent | 50f608b42f55e1d2c89dc22a01c58b7621b620a5 (diff) | |
download | librpm-tizen-c8f2927227471758abbdb36781d885b01798f0f8.tar.gz librpm-tizen-c8f2927227471758abbdb36781d885b01798f0f8.tar.bz2 librpm-tizen-c8f2927227471758abbdb36781d885b01798f0f8.zip |
Use rpm_count_t everywhere for header data count
- typedef'ed as uint32_t as that's the key size limit imposed by BDB,
relevant for RPM_BIN_TYPE
- easy to change to whatever later on as it's now consistent everywhere
Diffstat (limited to 'lib/rpmts_internal.h')
-rw-r--r-- | lib/rpmts_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rpmts_internal.h b/lib/rpmts_internal.h index 3a41bf8fc..a437193b1 100644 --- a/lib/rpmts_internal.h +++ b/lib/rpmts_internal.h @@ -54,7 +54,7 @@ struct rpmts_s { rpmprobFilterFlags ignoreSet; /*!< Bits to filter current problems. */ - int filesystemCount; /*!< No. of mounted filesystems. */ + unsigned int filesystemCount; /*!< No. of mounted filesystems. */ const char ** filesystems; /*!< Mounted filesystem names. */ rpmDiskSpaceInfo dsi; /*!< Per filesystem disk/inode usage. */ |