forked from AbleOS/ableos
CLEANUP: turned if statement into match
This commit is contained in:
parent
65f1695b46
commit
0508140f40
|
@ -61,11 +61,14 @@ pub fn kmain(cmdline: &str, bootstrap: Option<&'static [u8]>) -> ! {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let byte = sc.receive();
|
match sc.receive() {
|
||||||
if byte == b'\r' {
|
b'\r' => {
|
||||||
sc.send(b'\n');
|
sc.send(b'\n');
|
||||||
|
}
|
||||||
|
byte => {
|
||||||
|
sc.send(byte);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
sc.send(byte);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue