From cede7b41dbb632a099069f69df604bd848323af8 Mon Sep 17 00:00:00 2001 From: Tatsuyuki Ishi Date: Tue, 9 Jul 2019 15:47:33 +0900 Subject: [PATCH] Remove EventLoop and port the ALSA backend --- examples/beep.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/beep.rs b/examples/beep.rs index 686230c..671f1bf 100644 --- a/examples/beep.rs +++ b/examples/beep.rs @@ -49,7 +49,7 @@ fn main() -> Result<(), anyhow::Error> { eprintln!("an error occurred on stream: {}", err); })?; stream.play()?; - + std::thread::sleep(std::time::Duration::from_millis(1000)); Ok(())