Skip to content

Commit

Permalink
Remove now unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
mlschroe committed Feb 14, 2024
1 parent d19e3bc commit 6c9d91a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/solver.c
Original file line number Diff line number Diff line change
Expand Up @@ -1789,7 +1789,7 @@ prune_to_update_targets(Solver *solv, Id *cp, Queue *q)
}

static void
get_special_updaters(Solver *solv, int i, Rule *rr, Queue *dq)
get_special_updaters(Solver *solv, int i, Queue *dq)
{
Pool *pool = solv->pool;
Repo *installed = solv->installed;
Expand Down Expand Up @@ -1894,7 +1894,7 @@ resolve_installed(Solver *solv, int level, int disablerules, Queue *dq)
/* update to best package of the special updaters */
if (specialupdaters && specialupdaters[i - installed->start] != 0)
{
get_special_updaters(solv, i, rr, dq);
get_special_updaters(solv, i, dq);
if (dq->count)
{
/* use the feature rule as reason */
Expand Down

0 comments on commit 6c9d91a

Please sign in to comment.