diff options
Diffstat (limited to 'src/macros.rs')
-rw-r--r-- | src/macros.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macros.rs b/src/macros.rs index 1ee2cf2..a96acbe 100644 --- a/src/macros.rs +++ b/src/macros.rs @@ -2,7 +2,7 @@ #[macro_export] macro_rules! ehprint { ($s:expr) => { - $crate::semihosting:::io:ewrite_str($s); + $crate::semihosting::io::ewrite_str($s); }; ($($arg:tt)*) => { $crate::semihosting::io::ewrite_fmt(format_args!($($arg)*)); |