xbps_repository_find_pkg_deps: improve a debug printf.

This commit is contained in:
Juan RP 2011-02-01 17:32:25 +01:00
parent 0e38b649ff
commit 927d7e0c5d

View File

@ -367,8 +367,8 @@ find_repo_deps(prop_dictionary_t transd, /* transaction dictionary */
* Package is on repo, add it into the dictionary. * Package is on repo, add it into the dictionary.
*/ */
if ((rv = store_dependency(transd, curpkgd)) != 0) { if ((rv = store_dependency(transd, curpkgd)) != 0) {
xbps_dbg_printf("store_dependency failed %s", xbps_dbg_printf("store_dependency failed for "
reqpkg); "`%s': %s\n", reqpkg, strerror(rv));
prop_object_release(curpkgd); prop_object_release(curpkgd);
break; break;
} }