xbps-bin: formatting fixes for transaction printfs.
This commit is contained in:
parent
a1f39a0a82
commit
79fd316f8e
@ -176,7 +176,7 @@ show_transaction_sizes(struct transaction *trans)
|
|||||||
"%s\n", strerror(errno));
|
"%s\n", strerror(errno));
|
||||||
return -1;
|
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);
|
prop_dictionary_get_uint64(trans->d, "total-removed-size", &rmsize);
|
||||||
if (rmsize > 0) {
|
if (rmsize > 0) {
|
||||||
@ -185,8 +185,10 @@ show_transaction_sizes(struct transaction *trans)
|
|||||||
"%s\n", strerror(errno));
|
"%s\n", strerror(errno));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
printf("Total removed size:\t%6s\n\n", size);
|
printf("Total removed size:\t%6s\n", size);
|
||||||
}
|
}
|
||||||
|
printf("\n");
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user