gstutils: Delete extra semicolon

Warning reported by GCC with -Wpedantic: ISO C does not allow extra
‘;’ outside of a function.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5359>
This commit is contained in:
Ruben Gonzalez 2023-09-20 09:49:27 +02:00 committed by GStreamer Marge Bot
parent 03bf8e9386
commit 87dcc7f7ad

View file

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