diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-04-15 02:31:28 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-04-16 06:13:13 +0200 |
commit | a888975a3c25760027cd59932f5c1ad04368db8b (patch) | |
tree | d0a3c4069309c4b4dc3a0186ae014e4d26548276 /fftools/textformat/avtextformat.h | |
parent | 37635d31cbbf14c0ed7b918babc12cff8d03be5a (diff) | |
download | ffmpeg-a888975a3c25760027cd59932f5c1ad04368db8b.tar.gz |
fftools/textformat/avtextformat: Make close functions return void
Just like normal close functions.
Reviewed-by: softworkz . <softworkz-at-hotmail.com@ffmpeg.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'fftools/textformat/avtextformat.h')
-rw-r--r-- | fftools/textformat/avtextformat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/textformat/avtextformat.h b/fftools/textformat/avtextformat.h index 9fad3caae5..c2c56dc1a7 100644 --- a/fftools/textformat/avtextformat.h +++ b/fftools/textformat/avtextformat.h @@ -132,7 +132,7 @@ int avtext_context_open(AVTextFormatContext **ptctx, const AVTextFormatter *form int show_optional_fields, char *show_data_hash); -int avtext_context_close(AVTextFormatContext **tctx); +void avtext_context_close(AVTextFormatContext **tctx); void avtext_print_section_header(AVTextFormatContext *tctx, const void *data, int section_id); |