mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 03:29:50 +00:00
validate: Fix old style definition
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8229>
This commit is contained in:
parent
06748d155c
commit
5c2c1bce6c
3 changed files with 3 additions and 3 deletions
|
@ -653,7 +653,7 @@ _execute_checkpoint (GstValidateScenario * scenario, GstValidateAction * action)
|
|||
}
|
||||
|
||||
gboolean
|
||||
gst_validate_flow_init ()
|
||||
gst_validate_flow_init (void)
|
||||
{
|
||||
GList *tmp;
|
||||
gint default_generate = -1;
|
||||
|
|
|
@ -139,7 +139,7 @@ gst_validate_add_num_instances_check (GstStructure * structure)
|
|||
}
|
||||
|
||||
gboolean
|
||||
gst_validate_extra_checks_init ()
|
||||
gst_validate_extra_checks_init (void)
|
||||
{
|
||||
GList *config, *tmp;
|
||||
config = gst_validate_get_config ("extrachecks");
|
||||
|
|
|
@ -1564,7 +1564,7 @@ gst_validate_abort (const gchar * format, ...)
|
|||
}
|
||||
|
||||
gboolean
|
||||
is_tty ()
|
||||
is_tty (void)
|
||||
{
|
||||
return output_is_tty;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue