This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 0396831b0454f17b087897a72ca24ee35022b9df Author: Marvin Scholz <[email protected]> AuthorDate: Thu Feb 19 22:02:30 2026 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Mon Apr 27 14:31:02 2026 +0200 fftools: ffprobe: use unsigned in print_list_fmt Unsigned makes more sense in this context. --- fftools/ffprobe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index f32e8fea00..a4a49ae4b6 100644 --- a/fftools/ffprobe.c +++ b/fftools/ffprobe.c @@ -436,8 +436,8 @@ static void log_callback(void *ptr, int level, const char *fmt, va_list vl) #define print_list_fmt(k, f, n, m, ...) do { \ av_bprint_clear(&pbuf); \ - for (int idx = 0; idx < n; idx++) { \ - for (int idx2 = 0; idx2 < m; idx2++) { \ + for (unsigned int idx = 0; idx < n; idx++) { \ + for (unsigned int idx2 = 0; idx2 < m; idx2++) { \ if (idx > 0 || idx2 > 0) \ av_bprint_chars(&pbuf, ' ', 1); \ av_bprintf(&pbuf, f, __VA_ARGS__); \ _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
