From 87dcc7f7ad630399dba1135834705262014cca2e Mon Sep 17 00:00:00 2001 From: Ruben Gonzalez Date: Wed, 20 Sep 2023 09:49:27 +0200 Subject: [PATCH] gstutils: Delete extra semicolon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Warning reported by GCC with -Wpedantic: ISO C does not allow extra ‘;’ outside of a function. Part-of: --- subprojects/gstreamer/gst/gstutils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gstreamer/gst/gstutils.h b/subprojects/gstreamer/gst/gstutils.h index ee1b91d89f..78e520e204 100644 --- a/subprojects/gstreamer/gst/gstutils.h +++ b/subprojects/gstreamer/gst/gstutils.h @@ -1040,11 +1040,11 @@ gchar * gst_element_decorate_stream_id (GstElement *element, GST_API gchar * gst_element_decorate_stream_id_printf_valist (GstElement * element, const gchar * format, - va_list var_args) G_GNUC_PRINTF (2, 0) G_GNUC_MALLOC;; + va_list var_args) G_GNUC_PRINTF (2, 0) G_GNUC_MALLOC; GST_API gchar * gst_element_decorate_stream_id_printf (GstElement * element, const gchar * format, - ...) G_GNUC_PRINTF (2, 3) G_GNUC_MALLOC;; + ...) G_GNUC_PRINTF (2, 3) G_GNUC_MALLOC; /* util elementfactory functions */ GST_API