sunaudio: fix typo in comment
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 17 Jun 2011 09:37:33 +0000 (10:37 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sat, 18 Jun 2011 12:36:06 +0000 (13:36 +0100)
sys/sunaudio/gstsunaudiosink.c
sys/sunaudio/gstsunaudiosink.h

index c125dae..0110b26 100644 (file)
@@ -208,7 +208,7 @@ gst_sunaudiosink_init (GstSunAudioSink * sunaudiosink)
     audiodev = DEFAULT_DEVICE;
   sunaudiosink->device = g_strdup (audiodev);
 
-  /* mutex and gconf used to control the write method */
+  /* mutex and gcond used to control the write method */
   sunaudiosink->write_mutex = g_mutex_new ();
   sunaudiosink->sleep_cond = g_cond_new ();
 }
index cad4e88..9454475 100644 (file)
@@ -60,7 +60,7 @@ struct _GstSunAudioSink {
   gint samples_written;
   guint bytes_per_sample;
 
-  /* mutex and gconf used to control the write method */
+  /* mutex and gcond used to control the write method */
   GMutex *write_mutex;
   GCond *sleep_cond;
   gboolean flushing;