Skip to content

Commit

Permalink
Merge #49
Browse files Browse the repository at this point in the history
49: Fix clippy warning r=justahero a=justahero



Co-authored-by: Sebastian Ziebell <sebastian.ziebell@asquera.de>
  • Loading branch information
bors[bot] and justahero authored Aug 2, 2021
2 parents 94430e4 + d17e90b commit b0cdfd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ fn find_ram_in_linker_script(linker_script: &str) -> Option<MemoryEntry> {
} else {
tryc!(line[..boundary_pos].parse())
};
line = &line[boundary_pos..].trim();
line = line[boundary_pos..].trim();

line = eat!(line, ",");
line = eat!(line, "LENGTH");
Expand Down

0 comments on commit b0cdfd5

Please sign in to comment.