Skip to content

Commit dbc977c

Browse files
committed
fix typo in std.debug.ElfFile
1 parent feb05a7 commit dbc977c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/std/debug/ElfFile.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ fn loadSeparateDebugFile(arena: Allocator, main_loaded: *LoadInnerResult, opt_cr
375375
"debug_line",
376376
})) |name| {
377377
const s = @field(Section.Id, name);
378-
if (main_loaded.sections.get(s) == null and result.sections.get(s) != null) {
378+
if (main_loaded.sections.get(s) == null and result.sections.get(s) == null) {
379379
break false;
380380
}
381381
} else true;

0 commit comments

Comments
 (0)