xbps-bin: remove spurios chars in two printf()s.

This commit is contained in:
Juan RP 2011-01-18 23:42:51 +01:00
parent 992e8c6a14
commit 0a8fabbfac

View File

@ -245,13 +245,13 @@ show_transaction_sizes(struct transaction *trans)
"%s\n", strerror(errno)); "%s\n", strerror(errno));
return -1; return -1;
} }
printf("Total download size: %sB\n", size); printf("Total download size: %s\n", size);
if (xbps_humanize_number(size, (int64_t)instsize) == -1) { if (xbps_humanize_number(size, (int64_t)instsize) == -1) {
fprintf(stderr, "xbps-bin: error: humanize_number2 returns " fprintf(stderr, "xbps-bin: error: humanize_number2 returns "
"%s\n", strerror(errno)); "%s\n", strerror(errno));
return -1; return -1;
} }
printf("Total installed size: %sB\n\n", size); printf("Total installed size: %s\n\n", size);
return 0; return 0;
} }