summaryrefslogtreecommitdiff
path: root/lib/asan/asan_thread.h
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2012-08-28 11:34:40 +0000
committerKostya Serebryany <kcc@google.com>2012-08-28 11:34:40 +0000
commit283c296b64bc55deec9698260b3427a9b050a925 (patch)
treec7474098c8e295c04bde6e878203be8ca7a66901 /lib/asan/asan_thread.h
parent2c29212c42d457ade0bbd1d01de92195dd9ce925 (diff)
downloadcompiler-rt-283c296b64bc55deec9698260b3427a9b050a925.tar.gz
compiler-rt-283c296b64bc55deec9698260b3427a9b050a925.tar.bz2
compiler-rt-283c296b64bc55deec9698260b3427a9b050a925.tar.xz
[asan] get rid of AsanPrintf in favor of Printf from sanitizer_common
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@162746 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/asan/asan_thread.h')
-rw-r--r--lib/asan/asan_thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asan/asan_thread.h b/lib/asan/asan_thread.h
index 9a032fe3..1d4769f7 100644
--- a/lib/asan/asan_thread.h
+++ b/lib/asan/asan_thread.h
@@ -44,7 +44,7 @@ class AsanThreadSummary {
if (tid_ == 0) return; // no need to announce the main thread.
if (!announced_) {
announced_ = true;
- AsanPrintf("Thread T%d created by T%d here:\n", tid_, parent_tid_);
+ Printf("Thread T%d created by T%d here:\n", tid_, parent_tid_);
stack_.PrintStack();
}
}