Skip to content

Commit

Permalink
Remove space between two logs on the visionfive2 board
Browse files Browse the repository at this point in the history
Currently, there is a space between two logs, this commit removes the extra line to match with the vert platform.
  • Loading branch information
francois141 committed Jan 29, 2025
1 parent f45b8dd commit 0914233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform/visionfive2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ impl Platform for VisionFive2Platform {
fn debug_print(_level: Level, args: fmt::Arguments) {
let mut writer = WRITER.lock();
writer.write_fmt(args).unwrap();
writer.write_str("\r\n").unwrap();
writer.write_str("\r").unwrap();
}

fn exit_success() -> ! {
Expand Down

0 comments on commit 0914233

Please sign in to comment.