[compiler-rt] r348295 - Unbreak build due to style.

David Carlier via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 4 11:17:26 PST 2018


Author: devnexen
Date: Tue Dec  4 11:17:26 2018
New Revision: 348295

URL: http://llvm.org/viewvc/llvm-project?rev=348295&view=rev
Log:
Unbreak build due to style.

Modified:
    compiler-rt/trunk/lib/sanitizer_common/sanitizer_linux.cc

Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_linux.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_linux.cc?rev=348295&r1=348294&r2=348295&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_linux.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_linux.cc Tue Dec  4 11:17:26 2018
@@ -772,7 +772,8 @@ int internal_sysctl(const int *name, uns
   return sysctl(name, namelen, oldp, (size_t *)oldlenp, (void *)newp,
                 (size_t)newlen);
 #else
-  return internal_syscall(SYSCALL(__sysctl), name, namelen, oldp, (size_t *)oldlenp, newp, (size_t)newlen);
+  return internal_syscall(SYSCALL(__sysctl), name, namelen, oldp,
+                          (size_t *)oldlenp, newp, (size_t)newlen);
 #endif
 }
 




More information about the llvm-commits mailing list