mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 21:21:12 +00:00
basic-tutorial-6: Remove trailing bracket for code consistency
To make consistency with code nearby, remove bracket https://bugzilla.gnome.org/show_bug.cgi?id=797243
This commit is contained in:
parent
40c51b1d9f
commit
d8ce611a3a
2 changed files with 4 additions and 4 deletions
|
@ -58,9 +58,9 @@ static void print_pad_templates_information (GstElementFactory * factory) {
|
|||
g_print (" Availability: Always\n");
|
||||
else if (padtemplate->presence == GST_PAD_SOMETIMES)
|
||||
g_print (" Availability: Sometimes\n");
|
||||
else if (padtemplate->presence == GST_PAD_REQUEST) {
|
||||
else if (padtemplate->presence == GST_PAD_REQUEST)
|
||||
g_print (" Availability: On request\n");
|
||||
} else
|
||||
else
|
||||
g_print (" Availability: UNKNOWN!!!\n");
|
||||
|
||||
if (padtemplate->static_caps.string) {
|
||||
|
|
|
@ -183,9 +183,9 @@ static void print_pad_templates_information (GstElementFactory * factory) {
|
|||
g_print (" Availability: Always\n");
|
||||
else if (padtemplate->presence == GST_PAD_SOMETIMES)
|
||||
g_print (" Availability: Sometimes\n");
|
||||
else if (padtemplate->presence == GST_PAD_REQUEST) {
|
||||
else if (padtemplate->presence == GST_PAD_REQUEST)
|
||||
g_print (" Availability: On request\n");
|
||||
} else
|
||||
else
|
||||
g_print (" Availability: UNKNOWN!!!\n");
|
||||
|
||||
if (padtemplate->static_caps.string) {
|
||||
|
|
Loading…
Reference in a new issue