]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/af_biquads: Remove l from %lf in av_log environment
authorMichael Niedermayer <michael@niedermayer.cc>
Wed, 19 Sep 2018 16:05:27 +0000 (18:05 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Sun, 7 Oct 2018 01:03:09 +0000 (03:03 +0200)
The l modifier does nothing in C99 and it was undefined in C89 for %f

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavfilter/af_biquads.c

index 56d3035d77418383ed405da543db812012653143..ae5e1c6adef17da1308fdb02efa087fedff2158d 100644 (file)
@@ -383,7 +383,7 @@ static int config_filter(AVFilterLink *outlink, int reset)
         av_assert0(0);
     }
 
-    av_log(ctx, AV_LOG_VERBOSE, "a=%lf %lf %lf:b=%lf %lf %lf\n", s->a0, s->a1, s->a2, s->b0, s->b1, s->b2);
+    av_log(ctx, AV_LOG_VERBOSE, "a=%f %f %f:b=%f %f %f\n", s->a0, s->a1, s->a2, s->b0, s->b1, s->b2);
 
     s->a1 /= s->a0;
     s->a2 /= s->a0;