Skip to content

Commit 96fb0ea

Browse files
authored
[compiler-rt] remove unneeded comma for pthread_atfork declaration (#99739)
1 parent 672cc8b commit 96fb0ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/asan/asan_interceptors.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ INTERCEPTOR(int, atexit, void (*func)()) {
747747
extern "C" {
748748
extern int _pthread_atfork(void (*prepare)(), void (*parent)(),
749749
void (*child)());
750-
};
750+
}
751751

752752
INTERCEPTOR(int, pthread_atfork, void (*prepare)(), void (*parent)(),
753753
void (*child)()) {

0 commit comments

Comments
 (0)