mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +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
|
gboolean
|
||||||
gst_validate_flow_init ()
|
gst_validate_flow_init (void)
|
||||||
{
|
{
|
||||||
GList *tmp;
|
GList *tmp;
|
||||||
gint default_generate = -1;
|
gint default_generate = -1;
|
||||||
|
|
|
@ -139,7 +139,7 @@ gst_validate_add_num_instances_check (GstStructure * structure)
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
gst_validate_extra_checks_init ()
|
gst_validate_extra_checks_init (void)
|
||||||
{
|
{
|
||||||
GList *config, *tmp;
|
GList *config, *tmp;
|
||||||
config = gst_validate_get_config ("extrachecks");
|
config = gst_validate_get_config ("extrachecks");
|
||||||
|
|
|
@ -1564,7 +1564,7 @@ gst_validate_abort (const gchar * format, ...)
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
is_tty ()
|
is_tty (void)
|
||||||
{
|
{
|
||||||
return output_is_tty;
|
return output_is_tty;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue