diff options
author | Lukas Stabe <ahti333+mpdbugs@gmail.com> | 2013-12-10 19:16:37 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-12-10 19:19:31 +0100 |
commit | 695ca292742a1d09d9bf9c56cea50ac954383914 (patch) | |
tree | 7e0e1b85d5240e15b82b5006d7db686e12e0e559 | |
parent | 02e8da6c98e3f7ea67702dffe1dd2bea57d8389b (diff) |
output/osx: fix build failure
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | src/output/OSXOutputPlugin.cxx | 6 |
2 files changed, 4 insertions, 3 deletions
@@ -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 diff --git a/src/output/OSXOutputPlugin.cxx b/src/output/OSXOutputPlugin.cxx index 7debe6ab2..97ebae056 100644 --- a/src/output/OSXOutputPlugin.cxx +++ b/src/output/OSXOutputPlugin.cxx @@ -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; } |