From 02d27de048ae7f30114f7a76ff964143413d0edf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 17 Mar 2011 23:42:48 +0000 Subject: [PATCH] task: fix GST_TASK_BROADCAST MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Surprisingly enough, you can't "breadcast" on a GCond. Spotted by Rune Sætre. https://bugzilla.gnome.org/show_bug.cgi?id=645022 --- gst/gsttask.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gsttask.h b/gst/gsttask.h index 279d530..2081815 100644 --- a/gst/gsttask.h +++ b/gst/gsttask.h @@ -99,7 +99,7 @@ typedef enum { * * Send a broadcast signal to all waiting task conds */ -#define GST_TASK_BROADCAST(task) g_cond_breadcast(GST_TASK_GET_COND (task)) +#define GST_TASK_BROADCAST(task) g_cond_broadcast(GST_TASK_GET_COND (task)) /** * GST_TASK_GET_LOCK: -- 2.7.4