Commit 695ca292 authored by Lukas Stabe's avatar Lukas Stabe Committed by Max Kellermann

output/osx: fix build failure

parent 02e8da6c
...@@ -3,6 +3,7 @@ ver 0.18.6 (not yet released) ...@@ -3,6 +3,7 @@ ver 0.18.6 (not yet released)
- cdio_paranoia: support libcdio-paranoia 0.90 - cdio_paranoia: support libcdio-paranoia 0.90
* output * output
- openal: fix build failure on Mac OS X - openal: fix build failure on Mac OS X
- osx: fix build failure
ver 0.18.5 (2013/11/23) ver 0.18.5 (2013/11/23)
* configuration * configuration
......
...@@ -363,9 +363,9 @@ osx_output_open(struct audio_output *ao, AudioFormat &audio_format, ...@@ -363,9 +363,9 @@ osx_output_open(struct audio_output *ao, AudioFormat &audio_format,
OSStatus status = AudioUnitInitialize(od->au); OSStatus status = AudioUnitInitialize(od->au);
if (status != noErr) { if (status != noErr) {
error.Set(osx_output_domain, status, error.Format(osx_output_domain, status,
"Unable to initialize OS X audio unit: %s", "Unable to initialize OS X audio unit: %s",
GetMacOSStatusCommentString(status)); GetMacOSStatusCommentString(status));
return false; return false;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment