From 508e7d8ccf347836101ea28718de42c12be6dcd0 Mon Sep 17 00:00:00 2001 From: Tatsuyuki Ishi Date: Mon, 15 Jul 2019 22:39:04 +0900 Subject: [PATCH] Add one missing error handling --- src/host/alsa/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/host/alsa/mod.rs b/src/host/alsa/mod.rs index 4401ea9..6c885a7 100644 --- a/src/host/alsa/mod.rs +++ b/src/host/alsa/mod.rs @@ -583,7 +583,7 @@ fn stream_worker(rx: TriggerReceiver, continue; }, Err(err) => { - // TODO: signal errors + error_callback(err.into()); continue; } };