Skip to content

Commit 4a44471

Browse files
committed
Fix use of osprint.
1 parent 789fd34 commit 4a44471

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ static STD_INPUT: CsRefCell<StdInput> = CsRefCell::new(StdInput::new());
6666
/// Prints to the screen
6767
#[macro_export]
6868
macro_rules! osprint {
69-
($($arg:tt)*) => {
69+
($($arg:tt)*) => { {
7070
#[allow(unused)]
7171
use core::fmt::Write as _;
7272
let _ = write!(&$crate::CONSOLE, $($arg)*);
73-
}
73+
} }
7474
}
7575

7676
/// Prints to the screen and puts a new-line on the end

0 commit comments

Comments
 (0)