[compiler-rt] cc4d523 - sanitizer_common_interceptors: Fix lint errors
Gui Andrade via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 1 10:34:32 PDT 2020
Author: Gui Andrade
Date: 2020-07-01T17:33:35Z
New Revision: cc4d523bb600cbf129242dee3167e3acf1d37a6a
URL: https://github.com/llvm/llvm-project/commit/cc4d523bb600cbf129242dee3167e3acf1d37a6a
DIFF: https://github.com/llvm/llvm-project/commit/cc4d523bb600cbf129242dee3167e3acf1d37a6a.diff
LOG: sanitizer_common_interceptors: Fix lint errors
Added:
Modified:
compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
Removed:
################################################################################
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc b/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
index 995a7e15b470..053e559a9f90 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
@@ -3093,7 +3093,8 @@ INTERCEPTOR(int, sendmmsg, int fd, struct __sanitizer_mmsghdr *msgvec,
#endif
#if SANITIZER_INTERCEPT_SYSMSG
-INTERCEPTOR(int, msgsnd, int msqid, const void *msgp, SIZE_T msgsz, int msgflg) {
+INTERCEPTOR(int, msgsnd, int msqid, const void *msgp, SIZE_T msgsz,
+ int msgflg) {
void *ctx;
COMMON_INTERCEPTOR_ENTER(ctx, msgsnd, msqid, msgp, msgsz, msgflg);
if (msgp)
@@ -3102,7 +3103,8 @@ INTERCEPTOR(int, msgsnd, int msqid, const void *msgp, SIZE_T msgsz, int msgflg)
return res;
}
-INTERCEPTOR(SSIZE_T, msgrcv, int msqid, void *msgp, SIZE_T msgsz, long msgtyp, int msgflg) {
+INTERCEPTOR(SSIZE_T, msgrcv, int msqid, void *msgp, SIZE_T msgsz,
+ long msgtyp, int msgflg) {
void *ctx;
COMMON_INTERCEPTOR_ENTER(ctx, msgrcv, msqid, msgp, msgsz, msgtyp, msgflg);
SSIZE_T len = REAL(msgrcv)(msqid, msgp, msgsz, msgtyp, msgflg);
More information about the llvm-commits
mailing list