diff options
Diffstat (limited to 'examples/shared.rs')
-rw-r--r-- | examples/shared.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/shared.rs b/examples/shared.rs index 9585c388..d87dca52 100644 --- a/examples/shared.rs +++ b/examples/shared.rs @@ -36,7 +36,7 @@ mod app { if let Some(byte) = c.shared.c.lock(|c| c.dequeue()) { hprintln!("received message: {}", byte).unwrap(); - debug::exit(debug::EXIT_SUCCESS); + debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator } else { rtic::pend(Interrupt::UART0); } |