chore: fix a warning

This commit is contained in:
Denis Benato
2025-10-06 19:37:30 +02:00
parent 995df9b51b
commit 9dcce77302

View File

@@ -82,7 +82,7 @@ impl AsusArmouryAttribute {
let sig = signal_ctxt.clone();
tokio::spawn(async move {
let mut buffer = [0; 32];
if let Ok(mut stream) = watch.into_event_stream(&mut buffer) {
if let Ok(stream) = watch.into_event_stream(&mut buffer) {
stream
.for_each(|_| async {
debug!("{} changed", name);