diff options
Diffstat (limited to 'src/core/transaction.c')
-rw-r--r-- | src/core/transaction.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/transaction.c b/src/core/transaction.c index 8fa89a7be3..1344e2fb96 100644 --- a/src/core/transaction.c +++ b/src/core/transaction.c @@ -763,7 +763,7 @@ static Job* transaction_add_one_job(Transaction *tr, JobType type, Unit *unit, b if (unit->job && unit->job->type == type) j = unit->job; else { - j = job_new(unit->manager, type, unit); + j = job_new(unit, type); if (!j) return NULL; } |