aboutsummaryrefslogtreecommitdiff
path: root/src/macros.rs
diff options
context:
space:
mode:
authorGravatar Nicolas Schodet <nico@ni.fr.eu.org> 2017-06-16 22:57:43 +0200
committerGravatar Nicolas Schodet <nico@ni.fr.eu.org> 2017-06-16 22:57:58 +0200
commite63e13915d46d97dec4e87a1bd4a9e2ef36936f4 (patch)
treeab5f402f34276138573ae16d3af607cb2cc71a12 /src/macros.rs
parent0947e742959911e2693dc78542659978eaab9264 (diff)
downloadcortex-m-e63e13915d46d97dec4e87a1bd4a9e2ef36936f4.tar.gz
cortex-m-e63e13915d46d97dec4e87a1bd4a9e2ef36936f4.tar.zst
cortex-m-e63e13915d46d97dec4e87a1bd4a9e2ef36936f4.zip
Fix typo in ehprint! macro
Diffstat (limited to 'src/macros.rs')
-rw-r--r--src/macros.rs2
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)*));