mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
Add missing open brace (#177)
This commit is contained in:
committed by
Philipp Oppermann
parent
1183f5d1e1
commit
793eeebfb3
@@ -579,7 +579,7 @@ for section in elf_sections_tag.sections() {
|
||||
|
||||
let start_frame = Frame::containing_address(section.start_address());
|
||||
let end_frame = Frame::containing_address(section.end_address() - 1);
|
||||
for frame in Frame::range_inclusive(start_frame, end_frame)
|
||||
for frame in Frame::range_inclusive(start_frame, end_frame) {
|
||||
mapper.identity_map(frame, flags, allocator);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user