Skip to content

Commit 12452b4

Browse files
committed
Fix code formatting on unit test
1 parent 71e1f64 commit 12452b4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

compiler-rt/lib/radsan/tests/radsan_test_interceptors.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -374,9 +374,7 @@ TEST(TestRadsanInterceptors, PthreadCondSignalDiesWhenRealtime) {
374374
TEST(TestRadsanInterceptors, PthreadCondBroadcastDiesWhenRealtime) {
375375
pthread_cond_t cond{};
376376
pthread_cond_init(&cond, NULL);
377-
auto Func = [&cond]() {
378-
pthread_cond_broadcast(&cond);
379-
};
377+
auto Func = [&cond]() { pthread_cond_broadcast(&cond); };
380378
expectRealtimeDeath(Func, "pthread_cond_broadcast");
381379
expectNonrealtimeSurvival(Func);
382380

0 commit comments

Comments
 (0)