From a37f2cc5797a9bd09e535f3353d1a6be0e0cfcf4 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 27 May 2014 02:53:17 +0200 Subject: [PATCH] avfilter/vf_format: fix duplicate ; Signed-off-by: Michael Niedermayer --- libavfilter/vf_format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)))