Skip to content

Commit 4ed65d6

Browse files
committed
clang-format modification
1 parent 1409e63 commit 4ed65d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/asan/tests/asan_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,7 @@ TEST(AddressSanitizer, ThreadedStressStackReuseTest) {
11331133
ASSERT_EQ(0, rc);
11341134
}
11351135
for (int i = 0; i < kNumThreads; i++) {
1136-
PTHREAD_CREATE(&t[i], &attr, (void* (*)(void *x))LotsOfStackReuse, 0);
1136+
PTHREAD_CREATE(&t[i], &attr, (void* (*)(void* x))LotsOfStackReuse, 0);
11371137
}
11381138
for (int i = 0; i < kNumThreads; i++) {
11391139
PTHREAD_JOIN(t[i], 0);

0 commit comments

Comments
 (0)