Skip to content

Commit 22ea093

Browse files
committed
clang-format
1 parent 7e88686 commit 22ea093

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2398,13 +2398,14 @@ INTERCEPTOR(int, timespec_get, struct __sanitizer_timespec *ts, int base) {
23982398
// https://github.com/google/sanitizers/issues/321.
23992399
int res = REAL(timespec_get)(ts, base);
24002400
if (res) {
2401-
COMMON_INTERCEPTOR_WRITE_RANGE(ctx, ts, sizeof(struct __sanitizer_timespec));
2401+
COMMON_INTERCEPTOR_WRITE_RANGE(ctx, ts,
2402+
sizeof(struct __sanitizer_timespec));
24022403
}
24032404
return res;
24042405
}
2405-
#define INIT_TIMESPEC_GET COMMON_INTERCEPT_FUNCTION(timespec_get);
2406+
# define INIT_TIMESPEC_GET COMMON_INTERCEPT_FUNCTION(timespec_get);
24062407
#else
2407-
#define INIT_TIMESPEC_GET
2408+
# define INIT_TIMESPEC_GET
24082409
#endif
24092410

24102411
#if SANITIZER_INTERCEPT_GLOB

0 commit comments

Comments
 (0)