From a442f6248117a189cbf8c84a29fe2a20e5544acd Mon Sep 17 00:00:00 2001 From: Alex Page Date: Wed, 26 Jun 2024 15:56:30 -0400 Subject: [PATCH] Fix type of next_line --- subprojects/gst-plugins-bad/ext/hls/gsthlswebvttsink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-bad/ext/hls/gsthlswebvttsink.c b/subprojects/gst-plugins-bad/ext/hls/gsthlswebvttsink.c index 0cf3152030..702126558e 100644 --- a/subprojects/gst-plugins-bad/ext/hls/gsthlswebvttsink.c +++ b/subprojects/gst-plugins-bad/ext/hls/gsthlswebvttsink.c @@ -641,7 +641,7 @@ gst_hls_webvtt_sink_insert_timestamp_map (GstHlsWebvttSink * self, }; GstBuffer *header_buf = NULL; GstMapInfo map; - gchar *next_line = NULL; + guint8 *next_line = NULL; gsize next_line_pos = 0; GString *str = NULL; gsize len;