Add missing open brace (#177)

This commit is contained in:
Ryan Campbell
2016-06-10 13:36:33 -05:00
committed by Philipp Oppermann
parent 1183f5d1e1
commit 793eeebfb3

View File

@@ -579,7 +579,7 @@ for section in elf_sections_tag.sections() {
let start_frame = Frame::containing_address(section.start_address()); let start_frame = Frame::containing_address(section.start_address());
let end_frame = Frame::containing_address(section.end_address() - 1); 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); mapper.identity_map(frame, flags, allocator);
} }
} }