diff --git a/lib/depends.c b/lib/depends.c index 86e2a6fc778..fed81bc5a87 100644 --- a/lib/depends.c +++ b/lib/depends.c @@ -380,13 +380,13 @@ xbps_find_deps_in_pkg(prop_dictionary_t repo, prop_dictionary_t pkg) free(pkgname); if (rv == 0) { /* - * Found in current repository, remove it. - */ + * Found in current repository, remove it. + */ remove_missing_reqdep(&idx); } else if (rv != 0 && rv != ENOENT) break; - + /* * Package is on repo, add it into the dictionary. */ diff --git a/lib/install.c b/lib/install.c index d9373efa37e..2077c454703 100644 --- a/lib/install.c +++ b/lib/install.c @@ -142,9 +142,9 @@ xbps_install_binary_pkg(const char *pkgname, const char *destdir) } /* - * Construct the dependency chain for this package. If any - * dependency is not available, pass to the next repository. - */ + * Construct the dependency chain for this package. If any + * dependency is not available, pass to the next repository. + */ rv = xbps_find_deps_in_pkg(repod, pkgrd); if (rv != 0) { prop_object_release(repod); diff --git a/lib/unpack.c b/lib/unpack.c index d71a37b08eb..07a2f4ad35e 100644 --- a/lib/unpack.c +++ b/lib/unpack.c @@ -125,7 +125,7 @@ unpack_archive_init(prop_dictionary_t pkg, const char *destdir, ARCHIVE_EXTRACT_SECURE_SYMLINKS | \ ARCHIVE_EXTRACT_UNLINK -/* +/* * TODO: remove printfs and return appropiate errors to be interpreted by * the consumer. */