diff options
author | 2021-07-20 11:44:03 +0300 | |
---|---|---|
committer | 2021-07-20 11:44:03 +0300 | |
commit | bf80035aef21dd9c84a26ed47bbd1bb4a596952f (patch) | |
tree | 9db41cca23a87a9d78369c14b311d7fda9309fc0 /examples/pool.rs | |
parent | 5153ff1715a0c0611273a15c90e7bbf7ff7f218e (diff) | |
download | rtic-bf80035aef21dd9c84a26ed47bbd1bb4a596952f.tar.gz rtic-bf80035aef21dd9c84a26ed47bbd1bb4a596952f.tar.zst rtic-bf80035aef21dd9c84a26ed47bbd1bb4a596952f.zip |
rustfmt
Diffstat (limited to '')
-rw-r--r-- | examples/pool.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/pool.rs b/examples/pool.rs index 7c61dfba..010ee44e 100644 --- a/examples/pool.rs +++ b/examples/pool.rs @@ -49,7 +49,9 @@ mod app { foo::spawn(x).ok().unwrap(); // send another block to the task `bar` - bar::spawn(P::alloc().unwrap().init([0u8; 128])).ok().unwrap(); + bar::spawn(P::alloc().unwrap().init([0u8; 128])) + .ok() + .unwrap(); } #[task] |