[tsan] Update fork_atexit.cc to consistently print to stderr (and not stdout)

llvm-svn: 281821
This commit is contained in:
Kuba Brecka 2016-09-17 14:39:53 +00:00
parent bdbd1d2848
commit 0baa19004f
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
#include <sys/wait.h> #include <sys/wait.h>
void foo() { void foo() {
printf("CHILD ATEXIT\n"); fprintf(stderr, "CHILD ATEXIT\n");
} }
void *worker(void *unused) { void *worker(void *unused) {