Skip to content

Commit 1954869

Browse files
committed
[NFC][sanitizer] Fix at_scope_exit name.
1 parent 69c0067 commit 1954869

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,7 @@ ThreadLister::Result ThreadLister::ListThreads(
10371037
Report("Can't open %s for reading.\n", task_path_.data());
10381038
return Error;
10391039
}
1040-
auto acts_cleanup = at_scope_exit([&] { internal_close(descriptor); });
1040+
auto cleanup = at_scope_exit([&] { internal_close(descriptor); });
10411041
threads->clear();
10421042

10431043
Result result = Ok;

0 commit comments

Comments
 (0)