From 510542752997f5169efc4d6fefc7b4adde05a611 Mon Sep 17 00:00:00 2001 From: Zachary Hamm Date: Tue, 5 Dec 2017 01:47:08 -0600 Subject: [PATCH] Fix coreaudio build (#189) The last commit to coreaudio/mod.rs added a call to convert_error, but that function was removed earlier. Remove the call to fix the build. --- src/coreaudio/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreaudio/mod.rs b/src/coreaudio/mod.rs index f79f76f..3263118 100644 --- a/src/coreaudio/mod.rs +++ b/src/coreaudio/mod.rs @@ -151,7 +151,7 @@ impl EventLoop { Scope::Input, Element::Output, Some(&asbd) - ).map_err(convert_error)?; + )?; // Determine the future ID of the voice. let mut voices_lock = self.voices.lock().unwrap();