CLEANUP: turned if statement into match

master
able 2023-06-21 17:16:22 -05:00
parent 8c6b479259
commit 4b7eabbf36
1 changed files with 7 additions and 4 deletions

View File

@ -61,11 +61,14 @@ pub fn kmain(cmdline: &str, bootstrap: Option<&'static [u8]>) -> ! {
}
}
let byte = sc.receive();
if byte == b'\r' {
sc.send(b'\n');
match sc.receive() {
b'\r' => {
sc.send(b'\n');
}
byte => {
sc.send(byte);
}
}
sc.send(byte);
}
}
}