Fix lint warnings.


git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@162092 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/asan/asan_interceptors.cc b/lib/asan/asan_interceptors.cc
index 4064e68..71ea623 100644
--- a/lib/asan/asan_interceptors.cc
+++ b/lib/asan/asan_interceptors.cc
@@ -349,7 +349,7 @@
 
 INTERCEPTOR(char*, strcpy, char *to, const char *from) {  // NOLINT
 #if MAC_INTERPOSE_FUNCTIONS
-  if (!asan_inited) return REAL(strcpy)(to, from);
+  if (!asan_inited) return REAL(strcpy)(to, from);  // NOLINT
 #endif
   // strcpy is called from malloc_default_purgeable_zone()
   // in __asan::ReplaceSystemAlloc() on Mac.
@@ -618,7 +618,7 @@
     ASAN_INTERCEPT_FUNC(memcpy);
   } else {
 #if !MAC_INTERPOSE_FUNCTIONS
-    // If we're using dynamic interceptors on Mac, these two are just plain 
+    // If we're using dynamic interceptors on Mac, these two are just plain
     // functions.
     *(uptr*)&REAL(memcpy) = (uptr)REAL(memmove);
 #endif