diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-01-06 09:46:21 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-01-06 09:46:21 +0100 |
commit | 92c75d6b3332add96277ae91bbda5b07bde9b242 (patch) | |
tree | 43081a0dbaecd210195b77e2e5a806fa4bb6add6 /src | |
parent | 3e8dc3da097c206518a8a9105c1569a4fa17327c (diff) | |
download | apk-tools-92c75d6b3332add96277ae91bbda5b07bde9b242.tar.gz apk-tools-92c75d6b3332add96277ae91bbda5b07bde9b242.tar.bz2 apk-tools-92c75d6b3332add96277ae91bbda5b07bde9b242.tar.xz apk-tools-92c75d6b3332add96277ae91bbda5b07bde9b242.zip |
test: fix printf of size_t for 64 bit
Diffstat (limited to 'src')
-rw-r--r-- | src/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -123,7 +123,7 @@ static void print_errors_in_solution(struct apk_database *db, int unsatisfiable, { int i; - printf("%d unsatisfiable dependencies (solution with %d names)\n", + printf("%d unsatisfiable dependencies (solution with %zu names)\n", unsatisfiable, solution->num); for (i = 0; i < solution->num; i++) { |