summaryrefslogtreecommitdiff
path: root/lib/asan/asan_interceptors.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/asan/asan_interceptors.cpp')
-rw-r--r--lib/asan/asan_interceptors.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/asan/asan_interceptors.cpp b/lib/asan/asan_interceptors.cpp
index e43a42736..b19cf25c7 100644
--- a/lib/asan/asan_interceptors.cpp
+++ b/lib/asan/asan_interceptors.cpp
@@ -612,7 +612,8 @@ INTERCEPTOR(int, pthread_atfork, void (*prepare)(), void (*parent)(),
#if CAN_SANITIZE_LEAKS
__lsan::ScopedInterceptorDisabler disabler;
#endif
- // REAL(pthread_atfork) cannot be called due to symbol indirections at least on NetBSD
+ // REAL(pthread_atfork) cannot be called due to symbol indirections at least
+ // on NetBSD
return _pthread_atfork(prepare, parent, child);
}
#endif