mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 11:32:38 +00:00
Add missing semicolon in the example code.
https://bugzilla.gnome.org/show_bug.cgi?id=784909
This commit is contained in:
parent
3823907047
commit
fade3ed53e
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ static void print_pad_templates_information (GstElementFactory * factory) {
|
|||
|
||||
pads = gst_element_factory_get_static_pad_templates (factory);
|
||||
while (pads) {
|
||||
padtemplate = pads->data
|
||||
padtemplate = pads->data;
|
||||
pads = g_list_next (pads);
|
||||
|
||||
if (padtemplate->direction == GST_PAD_SRC)
|
||||
|
|
Loading…
Reference in a new issue