From 9df11820650b1d93f6a49519aaa51afb5cc17086 Mon Sep 17 00:00:00 2001 From: Marth64 Date: Mon, 25 Mar 2024 16:21:02 -0500 Subject: [PATCH] avformat/dvdvideodec: add explicit inttypes.h include Since log statements printing int64 were made portable in 4464b7eeb194e98ac115f18d2b6be67361407c8a, let us include inttypes.h explicitly (as it is unclear where PRId64 and such are coming from now). Reported-by: Leo Izen Signed-off-by: Marth64 --- libavformat/dvdvideodec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/dvdvideodec.c b/libavformat/dvdvideodec.c index 8acbe5a1a1..c94e7f7fe6 100644 --- a/libavformat/dvdvideodec.c +++ b/libavformat/dvdvideodec.c @@ -30,6 +30,8 @@ * 7) Close the dvdnav VM, and free dvdread's IFO structures */ +#include + #include #include #include