Skip to content

Commit 5347643

Browse files
committed
[lldb] Fix typo in SymbolVendorELF
(cherry picked from commit 73058e3)
1 parent ab29359 commit 5347643

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ SymbolVendorELF::CreateInstance(const lldb::ModuleSP &module_sp,
111111
SectionList *module_section_list = module_sp->GetSectionList();
112112
SectionList *objfile_section_list = dsym_objfile_sp->GetSectionList();
113113

114-
if (!module_section_list || !!objfile_section_list)
114+
if (!module_section_list || !objfile_section_list)
115115
return nullptr;
116116

117117
static const SectionType g_sections[] = {

0 commit comments

Comments
 (0)