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)
- cdio_paranoia: support libcdio-paranoia 0.90
* output
- openal: fix build failure on Mac OS X
- osx: fix build failure
ver 0.18.5 (2013/11/23)
* configuration
......
......@@ -363,9 +363,9 @@ osx_output_open(struct audio_output *ao, AudioFormat &audio_format,
OSStatus status = AudioUnitInitialize(od->au);
if (status != noErr) {
error.Set(osx_output_domain, status,
"Unable to initialize OS X audio unit: %s",
GetMacOSStatusCommentString(status));
error.Format(osx_output_domain, status,
"Unable to initialize OS X audio unit: %s",
GetMacOSStatusCommentString(status));
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