From eb5bfac7ce48246fd88130d2bf01eb18237792ef Mon Sep 17 00:00:00 2001 From: David Carlier Date: Tue, 4 Dec 2018 19:17:26 +0000 Subject: [PATCH] Unbreak build due to style. llvm-svn: 348295 --- compiler-rt/lib/sanitizer_common/sanitizer_linux.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc b/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc index d2234bb..f37d669 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc @@ -772,7 +772,8 @@ int internal_sysctl(const int *name, unsigned int namelen, void *oldp, 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 } -- 2.7.4