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.
This commit is contained in:
Zachary Hamm 2017-12-05 01:47:08 -06:00 committed by tomaka
parent e9856c07ed
commit 5105427529
1 changed files with 1 additions and 1 deletions

View File

@ -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();