diff --git a/sys/sunaudio/gstsunaudiosink.c b/sys/sunaudio/gstsunaudiosink.c index c125daea20..0110b26fab 100644 --- a/sys/sunaudio/gstsunaudiosink.c +++ b/sys/sunaudio/gstsunaudiosink.c @@ -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 (); } diff --git a/sys/sunaudio/gstsunaudiosink.h b/sys/sunaudio/gstsunaudiosink.h index cad4e88a35..94544752cd 100644 --- a/sys/sunaudio/gstsunaudiosink.h +++ b/sys/sunaudio/gstsunaudiosink.h @@ -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;