mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-26 20:21:59 +00:00
std: fix warning in VEXos stdio module
This commit is contained in:
parent
b2634e31c4
commit
0ede3fe48c
@ -13,7 +13,7 @@ impl Stdin {
|
||||
}
|
||||
|
||||
impl io::Read for Stdin {
|
||||
fn read(&mut self, mut buf: &mut [u8]) -> io::Result<usize> {
|
||||
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
|
||||
let mut count = 0;
|
||||
|
||||
for out_byte in buf.iter_mut() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user