summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2019-07-03 08:53:35 +0200
committerPaul B Mahol <onemda@gmail.com>2019-07-03 08:53:35 +0200
commit93a73df54dd92f294c3e84a753c75c64513b4c18 (patch)
tree29311b735bd31fd026c1de39ef7c5d3af1bfd34b
parentbe1643be314042e24927b09663156f5406ceb339 (diff)
avfilter/af_deesser: remove extra ;
-rw-r--r--libavfilter/af_deesser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_deesser.c b/libavfilter/af_deesser.c
index 2f57d51226..fad3e98f5c 100644
--- a/libavfilter/af_deesser.c
+++ b/libavfilter/af_deesser.c
@@ -107,7 +107,7 @@ static int config_input(AVFilterLink *inlink)
return AVERROR(ENOMEM);
for (int i = 0; i < inlink->channels; i++) {
- DeesserChannel *chan = &s->chan[i];;
+ DeesserChannel *chan = &s->chan[i];
chan->ratioA = chan->ratioB = 1.0;
}