diff options
| author | Andrey Zgarbul <zgarbul.andrey@gmail.com> | 2021-07-20 11:44:03 +0300 |
|---|---|---|
| committer | Andrey Zgarbul <zgarbul.andrey@gmail.com> | 2021-07-20 11:44:03 +0300 |
| commit | bf80035aef21dd9c84a26ed47bbd1bb4a596952f (patch) | |
| tree | 9db41cca23a87a9d78369c14b311d7fda9309fc0 | |
| parent | 5153ff1715a0c0611273a15c90e7bbf7ff7f218e (diff) | |
rustfmt
| -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 7c61dfb..010ee44 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] |
