mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
application-development: basics: fix unclosed parenthesis
This commit is contained in:
parent
d4d88d372d
commit
019608da45
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ GstBus *bus;
|
||||||
|
|
||||||
[..]
|
[..]
|
||||||
|
|
||||||
bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline);
|
bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
|
||||||
gst_bus_add_signal_watch (bus);
|
gst_bus_add_signal_watch (bus);
|
||||||
g_signal_connect (bus, "message::error", G_CALLBACK (cb_message_error), NULL);
|
g_signal_connect (bus, "message::error", G_CALLBACK (cb_message_error), NULL);
|
||||||
g_signal_connect (bus, "message::eos", G_CALLBACK (cb_message_eos), NULL);
|
g_signal_connect (bus, "message::eos", G_CALLBACK (cb_message_eos), NULL);
|
||||||
|
|
Loading…
Reference in a new issue