sunaudio: fix typo in comment

This commit is contained in:
Tim-Philipp Müller 2011-06-17 10:37:33 +01:00
parent 6c3e77964a
commit 53ee37b3d2
2 changed files with 2 additions and 2 deletions

View 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 ();
}

View 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;