Change code to compile with -Wall -Wextra.

--HG--
extra : convert_revision : 992e1515458c6ee36cd481d1ba0ff8febf892d12
This commit is contained in:
Juan RP 2009-02-18 01:07:51 +01:00
parent 028cacdd2a
commit 3b18195a6a
8 changed files with 34 additions and 12 deletions

View file

@ -591,15 +591,19 @@ find_pkg_deps_from_repo(prop_dictionary_t repo, prop_dictionary_t pkg,
}
int
xbps_install_pkg_deps(prop_dictionary_t pkg, const char *destdir, int flags)
xbps_install_pkg_deps(const char *pkgname, const char *destdir, int flags)
{
prop_array_t required, missing;
prop_object_t obj;
prop_object_iterator_t iter;
int rv = 0;
assert(pkg != NULL);
/*
* If origin object in chaindeps is not the same, bail out.
*/
obj = prop_dictionary_get(chaindeps, "origin");
if (obj == NULL || !prop_string_equals_cstring(obj, pkgname))
return EINVAL;
/*
* If there are missing deps, bail out.
*/