diff options
author | Mans Rullgard <mans@mansr.com> | 2012-10-26 17:58:19 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-10-27 13:06:27 +0100 |
commit | 6b776c61da26428ca67abec919c8a186a276ca66 (patch) | |
tree | d8b73f0643a74d8d82a98796331e24907a61f709 /libavfilter/buffersink.c | |
parent | 1aa07aa21c4ee39f0ed5fcd33d8259eed74bd3ab (diff) | |
download | ffmpeg-6b776c61da26428ca67abec919c8a186a276ca66.tar.gz |
buffersink: remove stray semicolon after function definition
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavfilter/buffersink.c')
-rw-r--r-- | libavfilter/buffersink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/buffersink.c b/libavfilter/buffersink.c index 73af25dc36..c68b909d57 100644 --- a/libavfilter/buffersink.c +++ b/libavfilter/buffersink.c @@ -57,7 +57,7 @@ static int start_frame(AVFilterLink *link, AVFilterBufferRef *buf) link->cur_buf = NULL; return 0; -}; +} int av_buffersink_read(AVFilterContext *ctx, AVFilterBufferRef **buf) { |