xbps-install/transaction: remove extra \n in a printf.

This commit is contained in:
Juan RP 2012-11-05 09:53:35 +01:00
parent caaf885229
commit f6a4ab353a

View File

@ -314,7 +314,7 @@ exec_transaction(struct xbps_handle *xhp, size_t maxcols, bool yes, bool drun)
* It's time to run the transaction! * It's time to run the transaction!
*/ */
if ((rv = xbps_transaction_commit(xhp)) == 0) { if ((rv = xbps_transaction_commit(xhp)) == 0) {
printf("\n %u installed, %u updated, " printf("%u installed, %u updated, "
"%u configured, %u removed.\n", trans->inst_pkgcnt, "%u configured, %u removed.\n", trans->inst_pkgcnt,
trans->up_pkgcnt, trans->cf_pkgcnt + trans->inst_pkgcnt, trans->up_pkgcnt, trans->cf_pkgcnt + trans->inst_pkgcnt,
trans->rm_pkgcnt); trans->rm_pkgcnt);