Fix indentation to pass clang-format test (failing on previous commit).

This commit is contained in:
Marc Rechté 2021-02-18 15:28:04 +01:00
parent 7dc7e27695
commit 88eb1a7c3d
1 changed files with 7 additions and 7 deletions

View File

@ -182,13 +182,13 @@ int od_instance_main(od_instance_t *instance, int argc, char **argv)
/* create pid file */ /* create pid file */
if (instance->config.pid_file) { if (instance->config.pid_file) {
rc = od_pid_create(&instance->pid, instance->config.pid_file); rc = od_pid_create(&instance->pid, instance->config.pid_file);
if (rc == -1) { if (rc == -1) {
od_error(&instance->logger, "init", NULL, NULL, od_error(&instance->logger, "init", NULL, NULL,
"failed to create pid file %s: %s", "failed to create pid file %s: %s",
instance->config.pid_file, instance->config.pid_file,
strerror(errno)); strerror(errno));
goto error; goto error;
} }
} }
/* start system machine thread */ /* start system machine thread */