This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit e255b21831f927da0ca4fcfc96b3fb883beb70dd
Author:     Kacper Michajłow <[email protected]>
AuthorDate: Tue Aug 11 16:09:47 2026 +0200
Commit:     Kacper Michajłow <[email protected]>
CommitDate: Wed Aug 12 17:21:06 2026 +0200

    tools/ismindex: fix const qualifier discard warning
    
    Signed-off-by: Kacper Michajłow <[email protected]>
---
 tools/ismindex.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/ismindex.c b/tools/ismindex.c
index b110420bf0..4fd9a781d0 100644
--- a/tools/ismindex.c
+++ b/tools/ismindex.c
@@ -498,7 +498,7 @@ static int handle_file(struct Tracks *tracks, const char 
*file, int split,
 {
     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]

Reply via email to