Skip to content

Commit 5872c7c

Browse files
committed
refactor(test_runner): address the clippy::uninlined_format_args lint
1 parent 5c33532 commit 5872c7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/r3_test_runner/src/targets/jlink.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ impl DebugProbe for Fe310JLinkDebugProbe {
117117
for (path, (_, offset)) in section_files.iter().zip(regions.iter()) {
118118
writeln!(cmd, "loadbin \"{}\" 0x{:08x}", path.display(), offset).unwrap();
119119
}
120-
writeln!(cmd, "setpc 0x{:x}", entry).unwrap();
120+
writeln!(cmd, "setpc 0x{entry:x}").unwrap();
121121
writeln!(cmd, "g").unwrap();
122122
writeln!(cmd, "q").unwrap();
123123

0 commit comments

Comments
 (0)