index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2011-09-20 15:56:20 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-09-20 17:15:09 -0500 |
commit | 47dd31560906fdd87f547940f5c7656d94d52b1b (patch) | |
tree | 44653904bfc3cd91f178a341142e4a24399de96d | |
parent | 8375ad214a2a8d6e01430f432aa7957688d8ec52 (diff) |
-rw-r--r-- | src/pacman/callback.c | 4 |
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); |