validate: Fix old style definition

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8229>
This commit is contained in:
Edward Hervey 2025-01-10 11:15:36 +01:00 committed by GStreamer Marge Bot
parent 06748d155c
commit 5c2c1bce6c
3 changed files with 3 additions and 3 deletions

View file

@ -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;

View file

@ -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");

View file

@ -1564,7 +1564,7 @@ gst_validate_abort (const gchar * format, ...)
}
gboolean
is_tty ()
is_tty (void)
{
return output_is_tty;
}