summaryrefslogtreecommitdiff
path: root/src/core/job.c
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2023-04-26 14:24:12 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2023-04-27 00:36:24 +0900
commitace15701c1d596913045df8306ead63adef71be9 (patch)
treee11e6d43701fec4a4748e18f920d29a1670a6d95 /src/core/job.c
parent6ff134004d46079f1b515bdb23be256cfe829541 (diff)
downloadsystemd-ace15701c1d596913045df8306ead63adef71be9.tar.gz
core/job: fix indentation
Diffstat (limited to 'src/core/job.c')
-rw-r--r--src/core/job.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/job.c b/src/core/job.c
index af47987938..1010e6f869 100644
--- a/src/core/job.c
+++ b/src/core/job.c
@@ -262,8 +262,8 @@ int job_install_deserialized(Job *j) {
if (j->type < 0 || j->type >= _JOB_TYPE_MAX_IN_TRANSACTION)
return log_unit_debug_errno(j->unit, SYNTHETIC_ERRNO(EINVAL),
- "Invalid job type %s in deserialization.",
- strna(job_type_to_string(j->type)));
+ "Invalid job type %s in deserialization.",
+ strna(job_type_to_string(j->type)));
pj = j->type == JOB_NOP ? &j->unit->nop_job : &j->unit->job;
if (*pj)