diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-06-01 02:22:46 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2023-06-01 03:25:19 +0200 |
| commit | 404aa292890503806a32eac5ae518dbeeadd60eb (patch) | |
| tree | b02ef548d1a95999a05655dbee4938327d487238 /examples/std/src | |
| parent | 2a435e53b761182dabf9496963052f8323125f3a (diff) | |
cortex-m: remove owned interrupts.
Diffstat (limited to 'examples/std/src')
| -rw-r--r-- | examples/std/src/bin/tcp_accept.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/std/src/bin/tcp_accept.rs b/examples/std/src/bin/tcp_accept.rs index d24e218dc..01695baea 100644 --- a/examples/std/src/bin/tcp_accept.rs +++ b/examples/std/src/bin/tcp_accept.rs | |||
| @@ -108,7 +108,7 @@ async fn main_task(spawner: Spawner) { | |||
| 108 | info!("Closing the connection"); | 108 | info!("Closing the connection"); |
| 109 | socket.abort(); | 109 | socket.abort(); |
| 110 | info!("Flushing the RST out..."); | 110 | info!("Flushing the RST out..."); |
| 111 | socket.flush().await; | 111 | _ = socket.flush().await; |
| 112 | info!("Finished with the socket"); | 112 | info!("Finished with the socket"); |
| 113 | } | 113 | } |
| 114 | } | 114 | } |
