Skip to content

Commit 7cbd899

Browse files
authored
[compiler-rt] lsan remove unneeded comma for pthread_atfork declaration. (llvm#99788)
1 parent ae2012d commit 7cbd899

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/lsan/lsan_interceptors.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ INTERCEPTOR(int, atexit, void (*f)()) {
389389
extern "C" {
390390
extern int _pthread_atfork(void (*prepare)(), void (*parent)(),
391391
void (*child)());
392-
};
392+
}
393393

394394
INTERCEPTOR(int, pthread_atfork, void (*prepare)(), void (*parent)(),
395395
void (*child)()) {

0 commit comments

Comments
 (0)