diff options
Diffstat (limited to 'lld/ELF/OutputSections.cpp')
| -rw-r--r-- | lld/ELF/OutputSections.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/OutputSections.cpp b/lld/ELF/OutputSections.cpp index 6034db13d5d..6ba25c15c94 100644 --- a/lld/ELF/OutputSections.cpp +++ b/lld/ELF/OutputSections.cpp @@ -542,7 +542,7 @@ template <class ELFT> void OutputSection<ELFT>::writeTo(uint8_t *Buf) { ArrayRef<uint8_t> Filler = Script<ELFT>::X->getFiller(this->Name); if (!Filler.empty()) fill(Buf, this->Size, Filler); - auto Fn = [=](InputSection<ELFT> *C) { C->writeTo(Buf); }; + auto Fn = [=](InputSection<ELFT> *IS) { IS->writeTo(Buf); }; if (Config->Threads) parallel_for_each(Sections.begin(), Sections.end(), Fn); else |

