summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2025-11-24 17:30:47 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2025-11-24 17:30:47 +0900
commit45fcb9d590d36c469e7fa18790fafd51809943ee (patch)
treec4abb286d496d35e542219f820074ae62ac37b5a
parentb75cf83a333ab4e321e89cdefb94e684f6648033 (diff)
Adjust indent [ci skip]
-rw-r--r--process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/process.c b/process.c
index 8d6953282a..e2ca6612d2 100644
--- a/process.c
+++ b/process.c
@@ -4012,8 +4012,8 @@ retry_fork_async_signal_safe(struct rb_process_status *status, int *ep,
prefork();
disable_child_handler_before_fork(&old);
- // Older versions of ASAN does not work with vfork
- // See https://github.com/google/sanitizers/issues/925
+ // Older versions of ASAN does not work with vfork
+ // See https://github.com/google/sanitizers/issues/925
#if defined(HAVE_WORKING_VFORK) && !defined(RUBY_ASAN_ENABLED)
if (!has_privilege())
pid = vfork();