osxaudio: fix spelling in debug message

https://bugzilla.gnome.org//show_bug.cgi?id=747936
This commit is contained in:
Ilya Konstantinov 2015-04-15 18:22:37 +03:00 committed by Tim-Philipp Müller
parent 852088db8d
commit 36decd3b39

View file

@ -341,7 +341,7 @@ gst_core_audio_audio_device_get_channel_layout (AudioDeviceID device_id,
status = AudioObjectGetPropertyDataSize (device_id, status = AudioObjectGetPropertyDataSize (device_id,
&channelLayoutAddress, 0, NULL, &propertySize); &channelLayoutAddress, 0, NULL, &propertySize);
if (status != noErr) { if (status != noErr) {
GST_ERROR ("failed to get prefered layout: %d", (int) status); GST_ERROR ("failed to get preferred layout: %d", (int) status);
goto beach; goto beach;
} }
@ -350,7 +350,7 @@ gst_core_audio_audio_device_get_channel_layout (AudioDeviceID device_id,
status = AudioObjectGetPropertyData (device_id, status = AudioObjectGetPropertyData (device_id,
&channelLayoutAddress, 0, NULL, &propertySize, layout); &channelLayoutAddress, 0, NULL, &propertySize, layout);
if (status != noErr) { if (status != noErr) {
GST_ERROR ("failed to get prefered layout: %d", (int) status); GST_ERROR ("failed to get preferred layout: %d", (int) status);
goto failed; goto failed;
} }