diff options
author | Allan McRae <allan@archlinux.org> | 2010-12-08 15:13:36 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-01-07 21:15:46 -0600 |
commit | f966f3a8344cd96bd675c79a5c470c66920b890c (patch) | |
tree | c97116b7cc0ca1dca8bed3f050ab18dc28a05585 /lib/libalpm/be_sync.c | |
parent | 4bc6ed56aa48784c8caf56c3a6fb1a3c972d221c (diff) | |
download | pacman-f966f3a8344cd96bd675c79a5c470c66920b890c.tar.xz |
Use size_t for alpm_list sizes
There is a lot of swtiching between size_t and int for alpm_list sizes
in the codebase. Start converting these to all be size_t by adjusting
the return type of alpm_list_count and fixing all additional warnings
given by -Wconversion that are generated by this change.
Dan: a few more small changes to ensure things compile, adjusting some
printf format string characters to accommodate the larger size on x86_64.
Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/be_sync.c')
-rw-r--r-- | lib/libalpm/be_sync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/be_sync.c b/lib/libalpm/be_sync.c index 81f3e46e..b11499c4 100644 --- a/lib/libalpm/be_sync.c +++ b/lib/libalpm/be_sync.c @@ -212,7 +212,7 @@ static int sync_db_populate(pmdb_t *db) } } - db->pkgcache = alpm_list_msort(db->pkgcache, count, _alpm_pkg_cmp); + db->pkgcache = alpm_list_msort(db->pkgcache, (size_t)count, _alpm_pkg_cmp); archive_read_finish(archive); return(count); |