From 0baa19004f5e2ec830d94256825c715f708208a8 Mon Sep 17 00:00:00 2001 From: Kuba Brecka Date: Sat, 17 Sep 2016 14:39:53 +0000 Subject: [PATCH] [tsan] Update fork_atexit.cc to consistently print to stderr (and not stdout) llvm-svn: 281821 --- compiler-rt/test/tsan/fork_atexit.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/tsan/fork_atexit.cc b/compiler-rt/test/tsan/fork_atexit.cc index 15cf0a2..6e3a2f5 100644 --- a/compiler-rt/test/tsan/fork_atexit.cc +++ b/compiler-rt/test/tsan/fork_atexit.cc @@ -7,7 +7,7 @@ #include void foo() { - printf("CHILD ATEXIT\n"); + fprintf(stderr, "CHILD ATEXIT\n"); } void *worker(void *unused) { -- 2.7.4