mirror of
https://github.com/google/comprehensive-rust.git
synced 2024-11-21 13:25:53 +02:00
Put “Bye!” message on its own line (#2431)
Before the message would be printed right next to the text echoed back. We now make sure to print it after a blank line.
This commit is contained in:
parent
0f00434a0f
commit
1a9941b39f
@ -50,7 +50,7 @@ extern "C" fn main(x0: u64, x1: u64, x2: u64, x3: u64) {
|
||||
}
|
||||
}
|
||||
|
||||
writeln!(uart, "Bye!").unwrap();
|
||||
writeln!(uart, "\n\nBye!").unwrap();
|
||||
system_off::<Hvc>().unwrap();
|
||||
}
|
||||
// ANCHOR_END: main
|
||||
|
Loading…
Reference in New Issue
Block a user