diff options
author | Dan McGee <dan@archlinux.org> | 2009-04-11 13:50:56 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-04-11 13:50:56 -0500 |
commit | 93ca155b48a29685914ffa10b11be42ef5d4734a (patch) | |
tree | 33500882d30b496c391d26533640825cac60c665 /lib/libalpm/delta.c | |
parent | 101c16b3eb8048dffd1c6c4438e84b759d2e2aff (diff) | |
parent | 0c614c181efec31ea8d3948745e5746b642cb10c (diff) |
Merge branch 'xav/repo-add'
Diffstat (limited to 'lib/libalpm/delta.c')
-rw-r--r-- | lib/libalpm/delta.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libalpm/delta.c b/lib/libalpm/delta.c index 9e4bcb42..de5dd601 100644 --- a/lib/libalpm/delta.c +++ b/lib/libalpm/delta.c @@ -21,6 +21,7 @@ #include <stdlib.h> #include <string.h> +#include <stdint.h> /* intmax_t */ #include <limits.h> #include <sys/types.h> #include <regex.h> @@ -215,13 +216,13 @@ off_t _alpm_shortest_delta_path(alpm_list_t *deltas, return(bestsize); } - _alpm_log(PM_LOG_DEBUG, "started delta shortest-path search\n"); + _alpm_log(PM_LOG_DEBUG, "started delta shortest-path search for '%s'\n", to); vertices = delta_graph_init(deltas); bestsize = delta_vert(vertices, to, &bestpath); - _alpm_log(PM_LOG_DEBUG, "delta shortest-path search complete\n"); + _alpm_log(PM_LOG_DEBUG, "delta shortest-path search complete : '%jd'\n", (intmax_t)bestsize); alpm_list_free_inner(vertices, _alpm_graph_free); alpm_list_free(vertices); |