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
diff --git a/lib/asan/asan_thread.cc b/lib/asan/asan_thread.cc
index 3bce19e..2ef4b2f 100644
--- a/lib/asan/asan_thread.cc
+++ b/lib/asan/asan_thread.cc
@@ -202,8 +202,8 @@
       // 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);