浏览代码

fix: use correct module path

YdrMaster 2 年之前
父节点
当前提交
11f86fceaf
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/legacy_stdio.rs

+ 2 - 2
src/legacy_stdio.rs

@@ -132,7 +132,7 @@ pub fn _print(args: fmt::Arguments) {
 /// declared in platform specific hardware.
 #[macro_export]
 macro_rules! print {
-    ($($arg:tt)*) => ($crate::logging::print(core::format_args!($($arg)*)));
+    ($($arg:tt)*) => ($crate::legacy_stdio::_print(core::format_args!($($arg)*)));
 }
 
 /// Prints to the legacy debug console, with a newline.
@@ -144,7 +144,7 @@ macro_rules! print {
 macro_rules! println {
     () => ($crate::print!("\r\n"));
     ($($arg:tt)*) => {
-        $crate::logging::print(core::format_args!($($arg)*));
+        $crate::legacy_stdio::_print(core::format_args!($($arg)*));
         $crate::print!("\r\n");
     }
 }