This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit cd073ba92facc2fafef001f2cf6950d6d0bb1fc9 Author: Kacper Michajłow <[email protected]> AuthorDate: Wed Jul 29 22:32:55 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Mon Aug 10 19:52:20 2026 +0200 tools/seek_print: mark usage() as av_noreturn It always calls exit(). Fixes -Wimplicit-fallthrough. Signed-off-by: Kacper Michajłow <[email protected]> --- tools/seek_print.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/seek_print.c b/tools/seek_print.c index 9280421741..632bd0692f 100644 --- a/tools/seek_print.c +++ b/tools/seek_print.c @@ -24,13 +24,14 @@ #endif #include "libavformat/avformat.h" +#include "libavutil/attributes.h" #include "libavutil/timestamp.h" #if !HAVE_GETOPT #include "compat/getopt.c" #endif -static void usage(int ret) +av_noreturn static void usage(int ret) { fprintf(ret ? stderr : stdout, "Usage: seek_print file [command ...]\n" _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
