diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-27 02:53:17 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-27 02:53:17 +0200 |
commit | a37f2cc5797a9bd09e535f3353d1a6be0e0cfcf4 (patch) | |
tree | 4f1c38f6b4469d36e2bbd8b7961ca889425d68fc /libavfilter/vf_format.c | |
parent | 6e9dbee7c65714e940b5cc56f84b896f2c9ab239 (diff) | |
download | ffmpeg-a37f2cc5797a9bd09e535f3353d1a6be0e0cfcf4.tar.gz |
avfilter/vf_format: fix duplicate ;
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_format.c')
-rw-r--r-- | libavfilter/vf_format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_format.c b/libavfilter/vf_format.c index cc71b2983e..afa17fe8a2 100644 --- a/libavfilter/vf_format.c +++ b/libavfilter/vf_format.c @@ -92,7 +92,7 @@ static av_cold int init(AVFilterContext *ctx) if (!strcmp(ctx->filter->name, "noformat")) { const AVPixFmtDescriptor *desc = NULL; enum AVPixelFormat *formats_allowed; - int nb_formats_lavu = 0, nb_formats_allowed = 0;; + int nb_formats_lavu = 0, nb_formats_allowed = 0; /* count the formats known to lavu */ while ((desc = av_pix_fmt_desc_next(desc))) |