Skip to content

Commit aae37fe

Browse files
committed
Auto merge of rust-lang#147054 - matthiaskrgr:rollup-660g92w, r=matthiaskrgr
Rollup of 7 pull requests Successful merges: - rust-lang#146283 (Resolve: (Ref)Cell wrappers to deny mutation during spec resolution.) - rust-lang#146453 (Add general arm-linux.md platform doc.) - rust-lang#146991 (const_caller_location to use real Span instead of `DUMMY_SP`) - rust-lang#146994 (Add `clippy::unconditional_recursion` to `./x clippy ci`) - rust-lang#147038 (Rename verbosity functions in bootstrap) - rust-lang#147047 (rustdoc: put the toolbar on the all item index) - rust-lang#147049 (std: fix warning in VEXos stdio module) r? `@ghost` `@rustbot` modify labels: rollup
2 parents ca05115 + 960217c commit aae37fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

std/src/sys/stdio/vexos.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ impl Stdin {
1313
}
1414

1515
impl io::Read for Stdin {
16-
fn read(&mut self, mut buf: &mut [u8]) -> io::Result<usize> {
16+
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
1717
let mut count = 0;
1818

1919
for out_byte in buf.iter_mut() {

0 commit comments

Comments
 (0)