summaryrefslogtreecommitdiff
path: root/libavfilter/vf_hqdn3d.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-12-31 00:29:36 +0100
committerDiego Biurrun <diego@biurrun.de>2012-12-31 11:20:45 +0100
commitbcb8d9eb8ff6e8f1e4c02d0143407373cffdbdeb (patch)
tree9c2a1c26e404de4768119767201892aa350899d3 /libavfilter/vf_hqdn3d.c
parent117f79de2d0cbae22d997c79ea442ee139e8dcf6 (diff)
Drop unnecessary 'l' length modifier when printfing double values.
%f denotes a double argument and 'l' does nothing in this case according to the C spec.
Diffstat (limited to 'libavfilter/vf_hqdn3d.c')
-rw-r--r--libavfilter/vf_hqdn3d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_hqdn3d.c b/libavfilter/vf_hqdn3d.c
index 7365b8d502..085900fbce 100644
--- a/libavfilter/vf_hqdn3d.c
+++ b/libavfilter/vf_hqdn3d.c
@@ -236,7 +236,7 @@ static int init(AVFilterContext *ctx, const char *args)
hqdn3d->strength[2] = chrom_spac;
hqdn3d->strength[3] = chrom_tmp;
- av_log(ctx, AV_LOG_VERBOSE, "ls:%lf cs:%lf lt:%lf ct:%lf\n",
+ av_log(ctx, AV_LOG_VERBOSE, "ls:%f cs:%f lt:%f ct:%f\n",
lum_spac, chrom_spac, lum_tmp, chrom_tmp);
if (lum_spac < 0 || chrom_spac < 0 || isnan(chrom_tmp)) {
av_log(ctx, AV_LOG_ERROR,