Skip to content

Commit b7fd4ee

Browse files
committed
vexos: remove accidental semicolon
1 parent a37c5a5 commit b7fd4ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/std/src/sys/stdio/vexos.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ impl io::Write for Stdout {
5656

5757
let count = unsafe {
5858
vex_sdk::vexSerialWriteBuffer(STDIO_CHANNEL, chunk.as_ptr(), chunk.len() as u32)
59-
as usize;
60-
};
59+
} as usize;
60+
6161
if count < 0 {
6262
return Err(io::Error::new(
6363
io::ErrorKind::Uncategorized,

0 commit comments

Comments
 (0)