mpegtsmux: Fix error message for PID < 0x40 to be in the claimed base 16

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8463>
This commit is contained in:
Mart Raudsepp 2025-02-12 00:54:25 +02:00 committed by GStreamer Marge Bot
parent 395c8cafa6
commit def2f12d84

View File

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