From 7730a81536a02bebe43076a423490d7a367a07c4 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Fri, 16 Jan 2026 11:40:19 +0100 Subject: [PATCH] [c,printf] fix wlog format string to match arguments --- channels/tsmf/client/tsmf_codec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/tsmf/client/tsmf_codec.c b/channels/tsmf/client/tsmf_codec.c index 68d06a43d..9483d7d50 100644 --- a/channels/tsmf/client/tsmf_codec.c +++ b/channels/tsmf/client/tsmf_codec.c @@ -480,7 +480,7 @@ static BOOL tsmf_read_format_type(TS_AM_MEDIA_TYPE* mediatype, wStream* s, UINT3 break; default: - WLog_INFO(TAG, "unhandled format type 0x%x", mediatype->FormatType); + WLog_INFO(TAG, "unhandled format type 0x%08x", (unsigned)mediatype->FormatType); break; } return TRUE;