From 0a8fabbfaccbc34935e9fdb7f85fe34a1e6aef43 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 18 Jan 2011 23:42:51 +0100 Subject: [PATCH] xbps-bin: remove spurios chars in two printf()s. --- bin/xbps-bin/install.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/xbps-bin/install.c b/bin/xbps-bin/install.c index 5094e04d..a10a7729 100644 --- a/bin/xbps-bin/install.c +++ b/bin/xbps-bin/install.c @@ -245,13 +245,13 @@ show_transaction_sizes(struct transaction *trans) "%s\n", strerror(errno)); 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) { fprintf(stderr, "xbps-bin: error: humanize_number2 returns " "%s\n", strerror(errno)); return -1; } - printf("Total installed size: %sB\n\n", size); + printf("Total installed size: %s\n\n", size); return 0; }