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/avtextwriters.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/avtextwriters.h')
-rw-r--r-- | fftools/textformat/avtextwriters.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/textformat/avtextwriters.h b/fftools/textformat/avtextwriters.h index 87b0024ba1..c99d6b3548 100644 --- a/fftools/textformat/avtextwriters.h +++ b/fftools/textformat/avtextwriters.h @@ -55,7 +55,7 @@ typedef struct AVTextWriterContext { int avtextwriter_context_open(AVTextWriterContext **pwctx, const AVTextWriter *writer); -int avtextwriter_context_close(AVTextWriterContext **pwctx); +void avtextwriter_context_close(AVTextWriterContext **pwctx); int avtextwriter_create_stdout(AVTextWriterContext **pwctx); |