mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
structure: remove some blank lines (previous gst-indent failure)
This commit is contained in:
parent
94f6eced23
commit
da9b082808
1 changed files with 0 additions and 6 deletions
|
@ -216,9 +216,7 @@ gst_structure_new (const gchar * name, const gchar * firstfield, ...)
|
||||||
g_return_val_if_fail (name != NULL, NULL);
|
g_return_val_if_fail (name != NULL, NULL);
|
||||||
|
|
||||||
va_start (varargs, firstfield);
|
va_start (varargs, firstfield);
|
||||||
|
|
||||||
structure = gst_structure_new_valist (name, firstfield, varargs);
|
structure = gst_structure_new_valist (name, firstfield, varargs);
|
||||||
|
|
||||||
va_end (varargs);
|
va_end (varargs);
|
||||||
|
|
||||||
return structure;
|
return structure;
|
||||||
|
@ -486,9 +484,7 @@ gst_structure_set (GstStructure * structure, const gchar * field, ...)
|
||||||
g_return_if_fail (structure != NULL);
|
g_return_if_fail (structure != NULL);
|
||||||
|
|
||||||
va_start (varargs, field);
|
va_start (varargs, field);
|
||||||
|
|
||||||
gst_structure_set_valist (structure, field, varargs);
|
gst_structure_set_valist (structure, field, varargs);
|
||||||
|
|
||||||
va_end (varargs);
|
va_end (varargs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -835,9 +831,7 @@ gst_structure_remove_fields (GstStructure * structure,
|
||||||
/* mutability checked in remove_field */
|
/* mutability checked in remove_field */
|
||||||
|
|
||||||
va_start (varargs, fieldname);
|
va_start (varargs, fieldname);
|
||||||
|
|
||||||
gst_structure_remove_fields_valist (structure, fieldname, varargs);
|
gst_structure_remove_fields_valist (structure, fieldname, varargs);
|
||||||
|
|
||||||
va_end (varargs);
|
va_end (varargs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue