This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 799cf2bc1658939432d3cd910c2e763541155e82 Author: Kacper Michajłow <[email protected]> AuthorDate: Tue Aug 11 22:11:41 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Wed Aug 12 17:21:07 2026 +0200 tools/sidxindex: fix const qualifier discard warning Signed-off-by: Kacper Michajłow <[email protected]> --- tools/sidxindex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sidxindex.c b/tools/sidxindex.c index 96b1fce8c4..2163d1dc08 100644 --- a/tools/sidxindex.c +++ b/tools/sidxindex.c @@ -119,7 +119,7 @@ static int handle_file(struct Tracks *tracks, const char *file) { AVFormatContext *ctx = NULL; int err = 0, i, orig_tracks = tracks->nb_tracks; - char *ptr; + const char *ptr; struct Track *track; err = avformat_open_input(&ctx, file, NULL, NULL); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
