summaryrefslogtreecommitdiff
path: root/examples/helloworld/helloworld.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/helloworld/helloworld.c')
-rw-r--r--examples/helloworld/helloworld.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/helloworld/helloworld.c b/examples/helloworld/helloworld.c
index 74e2a4faa..adb71e6e7 100644
--- a/examples/helloworld/helloworld.c
+++ b/examples/helloworld/helloworld.c
@@ -28,8 +28,8 @@ int main(int argc,char *argv[])
/* create a disk reader */
disksrc = gst_elementfactory_make("disksrc", "disk_source");
g_object_set(G_OBJECT(disksrc),"location", argv[1],NULL);
- g_signal_connectc(G_OBJECT(disksrc),"eos",
- G_CALLBACK(eos),NULL,FALSE);
+ g_signal_connect(G_OBJECT(disksrc),"eos",
+ G_CALLBACK(eos),NULL);
/* now it's time to get the parser */
parse = gst_elementfactory_make("mp3parse","parse");