Skip to content

Commit b8dd399

Browse files
SchrodingerZhunickdesaulniers
authored andcommitted
remove extra brace
Co-authored-by: Nick Desaulniers (paternity leave) <[email protected]>
1 parent 3ebd5dc commit b8dd399

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libc/src/__support/OSUtil/linux/vdso.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,8 @@ void *get_symbol(VDSOSym sym) {
9494
static FutexWordType once_flag = 0;
9595
callonce(reinterpret_cast<CallOnceFlag *>(&once_flag), [] {
9696
// first clear the symbol table
97-
for (auto &i : symbol_table) {
97+
for (auto &i : symbol_table)
9898
i = nullptr;
99-
}
10099

101100
// get the address of the VDSO, protect errno since getauxval may change it
102101
int errno_backup = libc_errno;

0 commit comments

Comments
 (0)