aboutsummaryrefslogtreecommitdiff
path: root/archival/dpkg.c
diff options
context:
space:
mode:
Diffstat (limited to 'archival/dpkg.c')
-rw-r--r--archival/dpkg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c
index e90e82b64..7693342f7 100644
--- a/archival/dpkg.c
+++ b/archival/dpkg.c
@@ -949,7 +949,7 @@ static int package_satisfies_dependency(int package, int depend_type)
949 return 0; 949 return 0;
950} 950}
951 951
952static int check_deps(deb_file_t **deb_file, int deb_start, int dep_max_count) 952static int check_deps(deb_file_t **deb_file, int deb_start /*, int dep_max_count - ?? */)
953{ 953{
954 int *conflicts = NULL; 954 int *conflicts = NULL;
955 int conflicts_num = 0; 955 int conflicts_num = 0;
@@ -1689,7 +1689,7 @@ int dpkg_main(int argc, char **argv)
1689 1689
1690 /* Check that the deb file arguments are installable */ 1690 /* Check that the deb file arguments are installable */
1691 if (!(opt & OPT_force_ignore_depends)) { 1691 if (!(opt & OPT_force_ignore_depends)) {
1692 if (!check_deps(deb_file, 0, deb_count)) { 1692 if (!check_deps(deb_file, 0 /*, deb_count*/)) {
1693 bb_error_msg_and_die("dependency check failed"); 1693 bb_error_msg_and_die("dependency check failed");
1694 } 1694 }
1695 } 1695 }