mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
Fixes for -Wold-style-definition
https://bugzilla.gnome.org/show_bug.cgi?id=611692
This commit is contained in:
parent
e8f65e8bff
commit
3234c0128b
4 changed files with 4 additions and 4 deletions
|
@ -1148,7 +1148,7 @@ gst_version (guint * major, guint * minor, guint * micro, guint * nano)
|
|||
*/
|
||||
|
||||
gchar *
|
||||
gst_version_string ()
|
||||
gst_version_string (void)
|
||||
{
|
||||
guint major, minor, micro, nano;
|
||||
|
||||
|
|
|
@ -432,7 +432,7 @@ plugin_loader_cleanup_child (GstPluginLoader * l)
|
|||
}
|
||||
|
||||
gboolean
|
||||
_gst_plugin_loader_client_run ()
|
||||
_gst_plugin_loader_client_run (void)
|
||||
{
|
||||
GstPluginLoader *l;
|
||||
|
||||
|
|
|
@ -1256,7 +1256,7 @@ gst_registry_get_feature_list_by_plugin (GstRegistry * registry,
|
|||
|
||||
/* Unref and delete the default registry */
|
||||
void
|
||||
_priv_gst_registry_cleanup ()
|
||||
_priv_gst_registry_cleanup (void)
|
||||
{
|
||||
GstRegistry *registry;
|
||||
|
||||
|
|
|
@ -942,7 +942,7 @@ print_children_info (GstElement * element)
|
|||
}
|
||||
|
||||
static void
|
||||
print_blacklist ()
|
||||
print_blacklist (void)
|
||||
{
|
||||
GList *plugins, *cur;
|
||||
gint count = 0;
|
||||
|
|
Loading…
Reference in a new issue