This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 4014d35ddab39b1fedf667ba8b42f08b9c6fa546 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Sat Feb 21 14:41:50 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Tue Mar 10 13:52:18 2026 +0100 avformat/bonk: Fix shadowing Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavformat/bonk.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavformat/bonk.c b/libavformat/bonk.c index 44de8e2087..cec89b8c17 100644 --- a/libavformat/bonk.c +++ b/libavformat/bonk.c @@ -63,8 +63,7 @@ static int bonk_read_header(AVFormatContext *s) const int b = avio_r8(s->pb); if (!b) { uint32_t t; - int ret = ffio_ensure_seekback(s->pb, 3); - + ret = ffio_ensure_seekback(s->pb, 3); if (ret < 0) return ret; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
