]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
core: drop unused argument
authorYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 9 May 2023 18:31:11 +0000 (03:31 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 10 May 2023 06:06:39 +0000 (15:06 +0900)
src/core/transaction.c

index 997839c553912542c5b1ca67294aa0d76fbe9cac..625a873c3243da344cde30caf4105bfa3ee01e72 100644 (file)
@@ -308,13 +308,11 @@ static void transaction_drop_redundant(Transaction *tr) {
         } while (again);
 }
 
-_pure_ static bool unit_matters_to_anchor(Unit *u, Job *job) {
-        assert(u);
+_pure_ static bool job_matters_to_anchor(Job *job) {
         assert(job);
         assert(!job->transaction_prev);
 
-        /* Checks whether at least one of the jobs for this unit
-         * matters to the anchor. */
+        /* Checks whether at least one of the jobs for this transaction matters to the anchor. */
 
         LIST_FOREACH(transaction, j, job)
                 if (j->matters_to_anchor)
@@ -382,7 +380,7 @@ static int transaction_verify_order_one(Transaction *tr, Job *j, Job *from, unsi
                         if (strv_push_pair(&array, k->unit->id, (char*) job_type_to_string(k->type)) < 0)
                                 log_oom();
 
-                        if (!delete && hashmap_get(tr->jobs, k->unit) && !unit_matters_to_anchor(k->unit, k))
+                        if (!delete && hashmap_get(tr->jobs, k->unit) && !job_matters_to_anchor(k))
                                 /* Ok, we can drop this one, so let's do so. */
                                 delete = k;