mirror of https://github.com/yandex/odyssey.git
Fix indentation to pass clang-format test (failing on previous commit).
This commit is contained in:
parent
7dc7e27695
commit
88eb1a7c3d
|
@ -182,13 +182,13 @@ int od_instance_main(od_instance_t *instance, int argc, char **argv)
|
|||
/* create pid file */
|
||||
if (instance->config.pid_file) {
|
||||
rc = od_pid_create(&instance->pid, instance->config.pid_file);
|
||||
if (rc == -1) {
|
||||
od_error(&instance->logger, "init", NULL, NULL,
|
||||
"failed to create pid file %s: %s",
|
||||
instance->config.pid_file,
|
||||
strerror(errno));
|
||||
goto error;
|
||||
}
|
||||
if (rc == -1) {
|
||||
od_error(&instance->logger, "init", NULL, NULL,
|
||||
"failed to create pid file %s: %s",
|
||||
instance->config.pid_file,
|
||||
strerror(errno));
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
|
||||
/* start system machine thread */
|
||||
|
|
Loading…
Reference in New Issue