exec_transaction: fix a printf.

--HG--
extra : convert_revision : 5792ac63cdea45f4889671413199cc9e2bf27c4b
This commit is contained in:
Juan RP 2009-08-17 16:06:37 +02:00
parent 1d84e6edfc
commit 6d98e9cdde
1 changed files with 2 additions and 2 deletions

View File

@ -416,8 +416,8 @@ exec_transaction(struct transaction *trans)
while ((obj = prop_object_iterator_next(trans->iter)) != NULL) {
prop_dictionary_get_cstring_nocopy(obj, "pkgname", &pkgname);
if ((rv = xbps_configure_pkg(pkgname)) != 0) {
printf("Error configuring package %s-%s (%s)\n",
pkgname, version, strerror(rv));
printf("Error configuring package %s (%s)\n",
pkgname, strerror(rv));
return rv;
}
}