PR #23709 opened by Jamaika1 URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23709 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23709.patch
>From 98fdbc1fafe97a27884454cf0e7731f7725d35c5 Mon Sep 17 00:00:00 2001 From: Jamaika1 <[email protected]> Date: Sun, 5 Jul 2026 21:50:32 +0000 Subject: [PATCH] Changed character specifier --- libavfilter/vf_quirc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_quirc.c b/libavfilter/vf_quirc.c index d2ba48e7bc..97ce603e53 100644 --- a/libavfilter/vf_quirc.c +++ b/libavfilter/vf_quirc.c @@ -101,7 +101,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame) codes_count = quirc_count(quirc->quirc); av_log(ctx, AV_LOG_VERBOSE, - "Found count %d codes in image #%ld\n", codes_count, inl->frame_count_out); + "Found count %d codes in image #%PRId64\n", codes_count, inl->frame_count_out); if (codes_count) { int i, j; -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
