From def2f12d842ab9feb7972810f4d3d49394067dcf Mon Sep 17 00:00:00 2001 From: Mart Raudsepp Date: Wed, 12 Feb 2025 00:54:25 +0200 Subject: [PATCH] mpegtsmux: Fix error message for PID < 0x40 to be in the claimed base 16 Part-of: --- subprojects/gst-plugins-bad/gst/mpegtsmux/gstbasetsmux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-bad/gst/mpegtsmux/gstbasetsmux.c b/subprojects/gst-plugins-bad/gst/mpegtsmux/gstbasetsmux.c index c266b6e5ea..bd96f17b08 100644 --- a/subprojects/gst-plugins-bad/gst/mpegtsmux/gstbasetsmux.c +++ b/subprojects/gst-plugins-bad/gst/mpegtsmux/gstbasetsmux.c @@ -1820,7 +1820,7 @@ stream_exists: invalid_stream_pid: { GST_ELEMENT_ERROR (element, STREAM, MUX, - ("Invalid Elementary stream PID (0x%02u < 0x40)", pid), (NULL)); + ("Invalid Elementary stream PID (0x%02x < 0x40)", pid), (NULL)); return NULL; } }