aboutsummaryrefslogtreecommitdiff
path: root/examples/extern_binds.rs
diff options
context:
space:
mode:
authorHenrik Tjäder <henrik@tjaders.com>2023-01-11 21:40:33 +0100
committerHenrik Tjäder <henrik@tjaders.com>2023-01-11 21:40:33 +0100
commitc370c0b21f054fa224680b95df63ca3d59f33ba1 (patch)
tree2969b2084e81228aa17615498d8154178c0a8e41 /examples/extern_binds.rs
parent1fe587c5160b9e99bbb67644318cb9e5c9c56b4e (diff)
Remove ok() from hprintln!()
sd 'hprintln(.*).ok\(\)' 'hprintln' (fd -e rs .)
Diffstat (limited to 'examples/extern_binds.rs')
-rw-r--r--examples/extern_binds.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/extern_binds.rs b/examples/extern_binds.rs
index b6df2fb..e445f4e 100644
--- a/examples/extern_binds.rs
+++ b/examples/extern_binds.rs
@@ -10,7 +10,7 @@ use panic_semihosting as _;
// Free function implementing the interrupt bound task `foo`.
fn foo(_: app::foo::Context) {
- hprintln!("foo called").ok();
+ hprintln!("foo called");
}
#[rtic::app(device = lm3s6965)]