Skip to content

Commit 800df7d

Browse files
committed
format
Created using spr 1.3.4
1 parent 1d2d597 commit 800df7d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler-rt/lib/lsan/lsan_common.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,8 @@ static void ProcessThread(tid_t os_id, uptr sp,
525525
auto *cb = +[](void *dtls_begin, void *dtls_end, uptr /*dso_idd*/,
526526
void *arg) -> void {
527527
reinterpret_cast<InternalMmapVector<Range> *>(arg)->push_back(
528-
{reinterpret_cast<uptr>(dtls_begin), reinterpret_cast<uptr>(dtls_end)});
528+
{reinterpret_cast<uptr>(dtls_begin),
529+
reinterpret_cast<uptr>(dtls_end)});
529530
};
530531
ScanRanges(extra_ranges, frontier, "DTLS", accessor);
531532
// FIXME: There might be a race-condition here (and in Bionic) if the

0 commit comments

Comments
 (0)