From 47dd31560906fdd87f547940f5c7656d94d52b1b Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 20 Sep 2011 15:56:20 -0500 Subject: Fix int/size_t type in alpm_list_count() call alpm_list_count() returns size_t, which we should use to store the result since it is easy enough to format for printing. Signed-off-by: Dan McGee --- src/pacman/callback.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/pacman/callback.c b/src/pacman/callback.c index 4fdd8f37..a01fc07e 100644 --- a/src/pacman/callback.c +++ b/src/pacman/callback.c @@ -318,9 +318,9 @@ void cb_question(alpm_question_t event, void *data1, void *data2, case ALPM_QUESTION_SELECT_PROVIDER: { alpm_list_t *providers = (alpm_list_t *)data1; - int count = alpm_list_count(providers); + size_t count = alpm_list_count(providers); char *depstring = alpm_dep_compute_string((alpm_depend_t *)data2); - printf(_(":: There are %d providers available for %s:\n"), count, + printf(_(":: There are %zd providers available for %s:\n"), count, depstring); free(depstring); select_display(providers); -- cgit v1.2.3-24-g4f1b