Initialise some variables to get the thing to compile

Original commit message from CVS:
Initialise some variables to get the thing to compile
This commit is contained in:
Iain Holmes 2003-10-28 23:28:12 +00:00
parent 3235f1d4c0
commit 1b3896b025
2 changed files with 4 additions and 4 deletions

View file

@ -861,7 +861,7 @@ print_element_list (void)
factory = GST_TYPE_FIND_FACTORY (feature);
if (factory->extensions) {
guint i;
guint i = 0;
g_print ("%s type: ", plugin->name);
while (factory->extensions[i]) {
g_print ("%s%s", i > 0 ? ", " : "", factory->extensions[i]);
@ -954,7 +954,7 @@ print_plugin_info (GstPlugin *plugin)
factory = GST_TYPE_FIND_FACTORY (feature);
if (factory->extensions) {
guint i;
guint i = 0;
g_print ("%s type: ", plugin->name);
while (factory->extensions[i]) {
g_print ("%s%s", i > 0 ? ", " : "", factory->extensions[i]);

View file

@ -854,7 +854,7 @@ print_element_list (void)
factory = GST_TYPE_FIND_FACTORY (feature);
if (factory->extensions) {
guint i;
guint i = 0;
g_print ("%s type: ", plugin->name);
while (factory->extensions[i]) {
g_print ("%s%s", i > 0 ? ", " : "", factory->extensions[i]);
@ -947,7 +947,7 @@ print_plugin_info (GstPlugin *plugin)
factory = GST_TYPE_FIND_FACTORY (feature);
if (factory->extensions) {
guint i;
guint i = 0;
g_print ("%s type: ", plugin->name);
while (factory->extensions[i]) {
g_print ("%s%s", i > 0 ? ", " : "", factory->extensions[i]);