]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
core/job: fix indentation
authorYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 26 Apr 2023 05:24:12 +0000 (14:24 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 26 Apr 2023 15:36:24 +0000 (00:36 +0900)
src/core/job.c

index af479879383d0ae76a1fed17e20ebf501e221c4f..1010e6f869ca3aafcd01ef22ac5c93bbbfcb371c 100644 (file)
@@ -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)