summaryrefslogtreecommitdiff
path: root/lib/asan/asan_thread.cc
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2013-03-22 07:29:59 +0000
committerDmitry Vyukov <dvyukov@google.com>2013-03-22 07:29:59 +0000
commit195369bb7f59896487c4542716ca9c5d53975e78 (patch)
tree4bbab1792cf5db6d49a46541cd1b1d33540c7445 /lib/asan/asan_thread.cc
parentec7962d874159f02ad9b1657b627ceb53fea55ab (diff)
asan: fix lint warning about line length
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@177709 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/asan/asan_thread.cc')
-rw-r--r--lib/asan/asan_thread.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/asan/asan_thread.cc b/lib/asan/asan_thread.cc
index 3bce19e4a..2ef4b2f3c 100644
--- a/lib/asan/asan_thread.cc
+++ b/lib/asan/asan_thread.cc
@@ -202,8 +202,8 @@ AsanThread *GetCurrentThread() {
// On Android, libc constructor is called _after_ asan_init, and cleans up
// TSD. Try to figure out if this is still the main thread by the stack
// address. We are not entirely sure that we have correct main thread
- // limits, so only do this magic on Android, and only if the found thread is
- // the main thread.
+ // limits, so only do this magic on Android, and only if the found thread
+ // is the main thread.
AsanThreadContext *tctx = GetThreadContextByTidLocked(0);
if (ThreadStackContainsAddress(tctx, &context)) {
SetCurrentThread(tctx->thread);