diff options
Diffstat (limited to 'src/systems/cmd')
| -rw-r--r-- | src/systems/cmd/renderer.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systems/cmd/renderer.rs b/src/systems/cmd/renderer.rs index bdd702d..1849ee9 100644 --- a/src/systems/cmd/renderer.rs +++ b/src/systems/cmd/renderer.rs @@ -42,13 +42,13 @@ impl JVRenderResult { #[macro_export] macro_rules! r_print { ($result:expr, $($arg:tt)*) => { - $result.print(&format!($($arg)*)); + $result.print(&format!($($arg)*)) }; } #[macro_export] macro_rules! r_println { ($result:expr, $($arg:tt)*) => { - $result.println(&format!($($arg)*)); + $result.println(&format!($($arg)*)) }; } |
