diff --git a/src/macros.rs b/src/macros.rs index f264f3a2..7443070b 100644 --- a/src/macros.rs +++ b/src/macros.rs @@ -26,7 +26,7 @@ macro_rules! hprint { /// Macro for printing to the **host's** standard output, with a newline. #[macro_export] macro_rules! hprintln { - () => (print!("\n")); + () => (hprint!("\n")); ($fmt:expr) => (hprint!(concat!($fmt, "\n"))); ($fmt:expr, $($arg:tt)*) => (hprint!(concat!($fmt, "\n"), $($arg)*)); }