xbps-bin: remove an extra newline in transaction ops.
--HG-- extra : convert_revision : xtraeme%40gmail.com-20100124130757-mf0p5d6kajwd6t2k
This commit is contained in:
parent
a0b5e9e83a
commit
489f6baaa6
@ -523,14 +523,14 @@ exec_transaction(struct transaction *trans)
|
|||||||
* Download binary packages (if they come from a remote repository)
|
* Download binary packages (if they come from a remote repository)
|
||||||
* and check its SHA256 hash.
|
* and check its SHA256 hash.
|
||||||
*/
|
*/
|
||||||
printf("[1/3] Downloading/integrity check\n\n");
|
printf("[1/3] Downloading/integrity check\n");
|
||||||
if ((rv = download_package_list(trans->iter)) != 0)
|
if ((rv = download_package_list(trans->iter)) != 0)
|
||||||
return rv;
|
return rv;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Iterate over the transaction dictionary.
|
* Iterate over the transaction dictionary.
|
||||||
*/
|
*/
|
||||||
printf("\n[2/3] Unpacking\n\n");
|
printf("\n[2/3] Unpacking\n");
|
||||||
while ((obj = prop_object_iterator_next(trans->iter)) != NULL) {
|
while ((obj = prop_object_iterator_next(trans->iter)) != NULL) {
|
||||||
if (!prop_dictionary_get_cstring_nocopy(obj,
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
||||||
"pkgname", &pkgname))
|
"pkgname", &pkgname))
|
||||||
@ -636,7 +636,7 @@ exec_transaction(struct transaction *trans)
|
|||||||
/*
|
/*
|
||||||
* Configure all unpacked packages.
|
* Configure all unpacked packages.
|
||||||
*/
|
*/
|
||||||
printf("\n[3/3] Configuring\n\n");
|
printf("\n[3/3] Configuring\n");
|
||||||
while ((obj = prop_object_iterator_next(trans->iter)) != NULL) {
|
while ((obj = prop_object_iterator_next(trans->iter)) != NULL) {
|
||||||
if (!prop_dictionary_get_cstring_nocopy(obj,
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
||||||
"pkgname", &pkgname))
|
"pkgname", &pkgname))
|
||||||
|
Loading…
Reference in New Issue
Block a user