osxaudio: fix spelling in debug message
authorIlya Konstantinov <ilya.konstantinov@gmail.com>
Wed, 15 Apr 2015 15:22:37 +0000 (18:22 +0300)
committerTim-Philipp Müller <tim@centricular.com>
Thu, 16 Apr 2015 23:36:04 +0000 (00:36 +0100)
https://bugzilla.gnome.org//show_bug.cgi?id=747936

sys/osxaudio/gstosxcoreaudiohal.c

index f1ebdf5..776d765 100644 (file)
@@ -341,7 +341,7 @@ gst_core_audio_audio_device_get_channel_layout (AudioDeviceID device_id,
   status = AudioObjectGetPropertyDataSize (device_id,
       &channelLayoutAddress, 0, NULL, &propertySize);
   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;
   }
 
@@ -350,7 +350,7 @@ gst_core_audio_audio_device_get_channel_layout (AudioDeviceID device_id,
   status = AudioObjectGetPropertyData (device_id,
       &channelLayoutAddress, 0, NULL, &propertySize, layout);
   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;
   }