Explorar o código

fix: use correct module path

YdrMaster %!s(int64=2) %!d(string=hai) anos
pai
achega
11f86fceaf
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  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.
 /// declared in platform specific hardware.
 #[macro_export]
 #[macro_export]
 macro_rules! print {
 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.
 /// Prints to the legacy debug console, with a newline.
@@ -144,7 +144,7 @@ macro_rules! print {
 macro_rules! println {
 macro_rules! println {
     () => ($crate::print!("\r\n"));
     () => ($crate::print!("\r\n"));
     ($($arg:tt)*) => {
     ($($arg:tt)*) => {
-        $crate::logging::print(core::format_args!($($arg)*));
+        $crate::legacy_stdio::_print(core::format_args!($($arg)*));
         $crate::print!("\r\n");
         $crate::print!("\r\n");
     }
     }
 }
 }