aboutsummaryrefslogtreecommitdiff
path: root/cortex-m-semihosting/src
diff options
context:
space:
mode:
authorGravatar Alex Martens <alex@thinglab.org> 2023-10-29 15:55:40 -0700
committerGravatar Alex Martens <alex@thinglab.org> 2023-10-29 15:55:40 -0700
commit9adc81bee6a2a1cd21cd89f3b0904a79ec797955 (patch)
tree8038ce54ad43b38590d68dc0f7b099380c200f0c /cortex-m-semihosting/src
parent7f6ff8fb72eb333344c02147c06e7dc6801870c3 (diff)
downloadcortex-m-9adc81bee6a2a1cd21cd89f3b0904a79ec797955.tar.gz
cortex-m-9adc81bee6a2a1cd21cd89f3b0904a79ec797955.tar.zst
cortex-m-9adc81bee6a2a1cd21cd89f3b0904a79ec797955.zip
semihosting: silence clippy::result_unit_err in hio
Diffstat (limited to '')
-rw-r--r--cortex-m-semihosting/src/hio.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/cortex-m-semihosting/src/hio.rs b/cortex-m-semihosting/src/hio.rs
index b6b6c7b..e0614ad 100644
--- a/cortex-m-semihosting/src/hio.rs
+++ b/cortex-m-semihosting/src/hio.rs
@@ -1,5 +1,8 @@
//! Host I/O
+// Fixing this lint requires a breaking change that does not add much value
+#![allow(clippy::result_unit_err)]
+
use crate::nr;
use core::{fmt, slice};