summaryrefslogtreecommitdiffstats
path: root/gst/level
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2005-09-29 13:08:41 +0000
committerWim Taymans <wim.taymans@gmail.com>2005-09-29 13:08:41 +0000
commit9052406cedd529c74fefe72ca7301e015ac7c995 (patch)
treee0cf5d9f98fa3e0693db7daf7cbb588d4a8e5df3 /gst/level
parent240fc75fba9b6039de6a7602689508f6bf70da1e (diff)
gst/level/level-example.c: Update for new bus API.
Original commit message from CVS: * gst/level/level-example.c: (main): Update for new bus API.
Diffstat (limited to 'gst/level')
-rw-r--r--gst/level/level-example.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/level/level-example.c b/gst/level/level-example.c
index 3f41f7f1..ed647de2 100644
--- a/gst/level/level-example.c
+++ b/gst/level/level-example.c
@@ -90,7 +90,7 @@ main (int argc, char *argv[])
g_object_set (G_OBJECT (level), "message", TRUE, NULL);
bus = gst_element_get_bus (pipeline);
- watch_id = gst_bus_add_watch (bus, GST_MESSAGE_ANY, message_handler, NULL);
+ watch_id = gst_bus_add_watch (bus, message_handler, NULL);
gst_element_set_state (pipeline, GST_STATE_PLAYING);