From 832c5a6d2597885c9de1d868e22ee461412e9460 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 2 Apr 2025 13:25:31 +0200 Subject: [PATCH] fix printf modifier for gsize Fixes #4641 --- src/gst/gstpipewirepool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gst/gstpipewirepool.c b/src/gst/gstpipewirepool.c index 3e061a0fd..3ac1b42d0 100644 --- a/src/gst/gstpipewirepool.c +++ b/src/gst/gstpipewirepool.c @@ -134,7 +134,7 @@ void gst_pipewire_pool_wrap_buffer (GstPipeWirePool *pool, struct pw_buffer *b) block_size = quantum_limit * pool->audio_info.bpf; } - GST_DEBUG_OBJECT (pool, "setting block size %lu", block_size); + GST_DEBUG_OBJECT (pool, "setting block size %zu", block_size); if (!pool->shm_allocator) pool->shm_allocator = gst_shm_allocator_get();