xbps-bin: formatting fixes for transaction printfs.

This commit is contained in:
Juan RP 2011-12-18 01:10:24 +01:00
parent a1f39a0a82
commit 79fd316f8e

View File

@ -176,7 +176,7 @@ show_transaction_sizes(struct transaction *trans)
"%s\n", strerror(errno));
return -1;
}
printf("Total installed size:\t%6s\n\n", size);
printf("Total installed size:\t%6s\n", size);
}
prop_dictionary_get_uint64(trans->d, "total-removed-size", &rmsize);
if (rmsize > 0) {
@ -185,8 +185,10 @@ show_transaction_sizes(struct transaction *trans)
"%s\n", strerror(errno));
return -1;
}
printf("Total removed size:\t%6s\n\n", size);
printf("Total removed size:\t%6s\n", size);
}
printf("\n");
return 0;
}