diff options
| author | David Carlier <devnexen@gmail.com> | 2018-09-02 10:52:43 +0000 |
|---|---|---|
| committer | David Carlier <devnexen@gmail.com> | 2018-09-02 10:52:43 +0000 |
| commit | fb58ea1b803bf174a46f0de13a29cc7b99ad5f55 (patch) | |
| tree | 58e15d928dfd366452b5105c64511b23fd865c12 | |
| parent | e858aa6565c6aa330bd006fe4b3d113e75e52bc2 (diff) | |
| download | bcm5719-llvm-fb58ea1b803bf174a46f0de13a29cc7b99ad5f55.tar.gz bcm5719-llvm-fb58ea1b803bf174a46f0de13a29cc7b99ad5f55.zip | |
Fix buildbot test
llvm-svn: 341286
| -rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_linux.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc b/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc index 81f0155a69a..ca8138b7ee8 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc @@ -821,7 +821,7 @@ int internal_sysctl(const int *name, unsigned int namelen, void *oldp, uptr *oldlenp, const void *newp, uptr newlen) { #if SANITIZER_OPENBSD return sysctl(name, namelen, oldp, (size_t *)oldlenp, (void *)newp, - (size_t)newlen); + (size_t)newlen); #else return sysctl(name, namelen, oldp, (size_t *)oldlenp, newp, (size_t)newlen); #endif |

